Can anyone explain why isn't the operator[] implemented for a std::list? I've searched around a bit but haven't found an answer. It wouldn't be too hard to implement or am I missing something?
|
|
|
Retrieving an element by index is an O(n) operation for linked list, which is what
which is O(n^2) - very nasty. So ISO C++ standard specifically mentions that all STL sequences that support For cases where you actually need that sort of thing, you can use
|
|||||||||||||||
|
|
It would not be too hard (for the implementer) but it would be too hard at runtime, since the performance will be terrible in most cases. Forcing the user to go through each link will make it more obvious what is going on in there than 'myList[102452]' would. |
|||||||||
|
|
I think I found the answer in another SO post http://stackoverflow.com/questions/366432/extending-stdlist
Still, is that the only reason? EDIT : It seems though as people mentioned it is more a matter of consistency regarding performance then strictly performance. |
|||||||
|
|
Actually, there is absolutely no reason to not provide operator[] or at least method at(int), because of the two reasons:
|
||||
|
