Is std::string size() a O(1) operation?
The implementation of STL I'm using is the one built into VC++
|
|
Is std::string size() a O(1) operation? The implementation of STL I'm using is the one built into VC++
|
|||
|
|
|
|
If you're asking if MSVC's implementation of string::stize() has constant complexity, then the answer is yes. But Don Wakefield mentioned Table 65 in 23.1 of the C++ Standard where it says that the complexity of
However, that does not mean that those entries shall have constant complexity. Standards use very specific terminology, and "should" means it's not required. 'Note A' was added to the standard specifically to appease those who believed that So you can't rely on |
||
|
|
|
Yes, std::string::size() is O(1). |
||
|
|
|
|
See Table 65 in Section 23.1 of the Standard. "a.size()" is listed as "(Note A)", which says that "Those entries ... should have constant complexity". Section 21.3 says that strings conform to the requirements of a sequence (23.1), ipso facto, size() is constant time. |
||
|
|
|
|
Here's an easy way to answer that question for msvc++. Write some code in a project:
Hilight the .size call, right-click, go to definition. On my install (vs2005sp1) this sends me to xstring:1635, which looks like this:
So it looks like the string has a member called _Mysize, and it's just returning that. In other words, this is a O(1) implementation. |
||
|
|
|
|
Performance is guaranteed by the STL to be at least O(N) for containers, however many containers including std::string can implement this as O(1) and will. Usually it'll either return a simple variable or do something like _End - _Begin and return that. |
||
|
|
|
|
So it eventually might be like this, but you can never be sure. |
||||
|