How do boost::numeric::ublas::vector and std::vector compare in runtime efficiency?

Is it safe to assume that I can convert an entire program from using std::vector to use boost::numeric::ublas::vector just by writing:

#include <boost/numeric/ublas/vector.hpp>
using namespace boost::numeric::ublas;

instead of #include<vector>? Can I just use boost vectors as if they were STL vectors in all aspects?

Do functions from <algorithm> work with boost vectors? Do they use the same iterators?

Do they work in C++0x? Do they work for range based loops?

link|improve this question

what's wrong with std::vector? – Nim Jun 9 '11 at 15:11
feedback

2 Answers

up vote 7 down vote accepted

You should only use ublas::vector if you want to do linear algebra operations, such as matrix vector multiplication etc. They do not provide the same functionality nor the same interface as std::vector. In terms of run-time efficiency, there is nothing, that I know of, that beats std::vector.

link|improve this answer
Really? Cause I'm pretty sure linked lists like std::list beat vector for insertion and removal of elements. :p – wheaties Jun 9 '11 at 15:11
@wheaties I also thought so, but was shocked to see that vector is mostly good even for that. – BlaXpirit Jun 9 '11 at 15:12
1  
it really depends on the size. Insertion in the middle of a huge std::vector should be way slower than insertion in the middle of an equally huge std::list. – juanchopanza Jun 9 '11 at 15:20
see here for evidence/benchmark of what BlaXpirit is saying. Granted, size is the important element here. – rubenvb Jun 9 '11 at 15:31
@rubenvb : To be fair, that was benchmarked with MSVC 5, which was released in Feb 1997 -- not exactly current. ;-] – ildjarn Jun 9 '11 at 16:28
show 2 more comments
feedback

These are completely orthogonal data types -- they don't compare. The former represents the algebraic definition of 'vector' (a one-dimensional matrix) while the latter represents the computer science definition of 'vector' (a one-dimensional array).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.