vote up 1 vote down star

Is std::string size() a O(1) operation?

The implementation of STL I'm using is the one built into VC++

flag

6 Answers

vote up 7 vote down check

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 size() should follow what's said in 'Note A'. Note A says:

Those entries marked ‘‘(Note A)’’ should have constant complexity.

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 size() should be allowed to have linear complexity so there would be no need to maintain the size when containers were modified.

So you can't rely on size() having constant complexity, but I'm honestly not sure if there are any implementations that do not have a constant string::size().

link|flag
As a side note, it is nonetheless possible to retrieve size of the string as an O(1) operation in a standard way: (end() - begin()). This is guaranteed to be \[amortized\] O(1) because both begin() and end() must be O(1) (Container requirements), string iterators are random-access (string requirements), and operator- must be O(1) for iterators that support it (iterator requirements). – Pavel Minaev Jul 12 at 8:22
vote up 3 vote down

Yes, std::string::size() is O(1).

link|flag
vote up 3 vote down

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.

link|flag
vote up 2 vote down

Here's an easy way to answer that question for msvc++.

Write some code in a project:

string happy;
happy.size();

Hilight the .size call, right-click, go to definition.

On my install (vs2005sp1) this sends me to xstring:1635, which looks like this:

size_type __CLR_OR_THIS_CALL size() const
	{	// return length of sequence
	return (_Mysize);
	}

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down
size_type __CLR_OR_THIS_CALL size() const

{   // return length of sequence

    return (_Mysize);

}

So it eventually might be like this, but you can never be sure.

link|flag
I think you were voted down because you didn't answer the question, you required the reader to connect the dots. And also your answer is cryptic. – Max Howell Nov 1 '08 at 20:59
rephrased your answer and tossed in an upvote. – tfinniga Nov 3 '08 at 20:22

Your Answer

Get an OpenID
or

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