9
votes
Is list::size() really O(n)?
I've had to look into gcc 3.4's list::size before, so I can say this:
it uses std::distance(head, tail)
std::distance has two implementations: for types that satisfy RandomAc …
