Relative performance of std::vector vs. std::list vs. std::slist? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T06:50:51Zhttp://stackoverflow.com/feeds/question/238008http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/238008/relative-performance-of-stdvector-vs-stdlist-vs-stdslist5Relative performance of std::vector vs. std::list vs. std::slist?Andrew2008-10-26T13:24:34Z2008-10-27T18:53:43Z
<p>For a simple linked list in which random access to list elements is not a requirement, are there any significant advantages (performance or otherwise) to using <code>std::list</code> instead of <code>std::vector</code>? If backwards traversal is required, would it be more efficient to use <code>std::slist</code> and <code>reverse()</code> the list prior to iterating over its elements?</p>
http://stackoverflow.com/questions/238008/relative-performance-of-stdvector-vs-stdlist-vs-stdslist/238023#23802310Answer by Motti for Relative performance of std::vector vs. std::list vs. std::slist?Motti2008-10-26T13:41:22Z2008-10-27T18:53:43Z<p>As usual the best answer to performance questions is to <a href="http://stackoverflow.com/questions/61278/quick-and-dirty-way-to-profile-your-code">profile</a> both implementations for your use case and see which is faster. </p>
<p>In general if you have insertions into the data-structure (other than at the end) then <code>vector</code> may be slower, otherwise in most cases <code>vector</code> is expected to perform better than <code>list</code> if only for <a href="http://en.wikipedia.org/wiki/Locality_of_reference" rel="nofollow">data locality issues</a>, this means that if two elements that are adjacent in the data-set are adjacent in memory then the next element will already be in the processor's cache and will not have to page fault the memory into the cache.</p>
<p>Also keep in mind that the space overhead for a <code>vector</code> is constant (3 pointers) while the space overhead for a <code>list</code> is paid for each element, this also reduces the number of full elements (data plus overhead) that can reside in the cache at any one time.</p>
http://stackoverflow.com/questions/238008/relative-performance-of-stdvector-vs-stdlist-vs-stdslist/238024#2380242Answer by gbjbaanb for Relative performance of std::vector vs. std::list vs. std::slist?gbjbaanb2008-10-26T13:41:22Z2008-10-26T13:41:22Z<p>Simply no. List has advantages over Vector, but sequential access is not one of them - if that's all you're doing, then a vector is better.</p>
<p>However.. a vector is more expensive to add additional elements than a list, especially if you're inserting in the middle.</p>
<p>Understand how these collections are implemented: a vector is a sequential array of data, a list is an element that contains the data and pointers to the next elements. Once you understand that, you'll understand why lists are good for inserts, and bad for random access.</p>
<p>(so, reverse iteration of a vector is exactly the same as for forward iteration - the iterator just subtracts the size of the data items each time, the list still has to jump to the next item via the pointer)</p>
http://stackoverflow.com/questions/238008/relative-performance-of-stdvector-vs-stdlist-vs-stdslist/238028#2380282Answer by janm for Relative performance of std::vector vs. std::list vs. std::slist?janm2008-10-26T13:42:31Z2008-10-27T01:18:17Z<p>If you need backwards traversal an slist is unlikely to be the datastructure for you.</p>
<p>A conventional (doubly) linked list gives you constant insertion and deletion time anywhere in the list; a vector only gives amortised constant time insertion and deletion at the end of the list. For a vector insertion and deletion time is linear anywhere other than the end. This isn't the whole story; there are also constant factors. A vector is a more simple datastructure that has advantages and disadvantages depending on the context.</p>
<p>The best way to understand this is to understand how they are implemented. A linked list has a next and a previous pointer for each element. A vector has an array of elements addressed by index. From this you can see that both can do efficient forwards and backwards traversal, while only a vector can provide efficient random access. You can also see that the memory overhead of a linked list is per element while for the vector it is constant. And you can also see why insertion time is different between the two structures.</p>
http://stackoverflow.com/questions/238008/relative-performance-of-stdvector-vs-stdlist-vs-stdslist/238141#2381412Answer by Martin York for Relative performance of std::vector vs. std::list vs. std::slist?Martin York2008-10-26T15:19:17Z2008-10-26T15:19:17Z<p>See this question for details about the costs:<br>
<a href="http://stackoverflow.com/questions/181693/what-are-the-complexity-guarantees-of-the-standard-containers">What are the complexity Guarantees of the standard containers</a></p>
<p>If you have an slist and you now want to traverse it in reverse order why not change the type to list everywhere?</p>