multidimensional vector to list

H

haikoley

Hi there,

I'm trying to convert a three dimensional vector to a list.

I have a three dimenional vector of type float, which looks like this:

std::vector< TPoint3D<float> > points;
points.push_back(TPoint3D<float>(x,y,z);

And I thought about converting the vector to a list like this:
list<TPoint3D<float>> myList(points.begin(), points.end());

But I want to filter the values, so that if the z-values are greater than acertain threshold, they and the corresponding x and y values from the vector are removed. It works for vectors, because I can access the values usingtheir indices, but how do you do something like that with a list?

Cheers,
Haiko
 
S

SG

I'm trying to convert a three dimensional vector to a list.

I have a three dimenional vector of type float, which looks like this:

std::vector< TPoint3D<float> > points;
points.push_back(TPoint3D<float>(x,y,z);

It does not look like a 3-dimensional vector to me.
More like a 1-dimensional vector of 3D points.
And I thought about converting the vector to a list like this:
list<TPoint3D<float>> myList(points.begin(), points.end());

Why? Seriously. Why?
It does not look like a good idea to me.
But I want to filter the values, so that if the z-values are greater
than a certain threshold, they and the corresponding x and y values
from the vector are removed. It works for vectors, because I can
access the values using their indices, but how do you do something
like that with a list?

You don't need random access for processing a list from front to back.

One or two things of these might help you:
- std::copy_if
- std::back_inserter
- Boost's filter_iterator
- std::list<>::remove_if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,020
Latest member
GenesisGai

Latest Threads

Top