Prepend std::string
Asked Answered
P

5

96

What is the most efficient way to prepend std::string? Is it worth writing out an entire function to do so, or would it take only 1 - 2 lines? I'm not seeing anything related to an std::string::push_front.

Placate answered 12/12, 2011 at 0:15 Comment(9)
Any reason you can't do something like s = a + s?Ascertain
What do u mean by prepend? Is it what @MikeBantegui has mentioned? or you are trying to do something else?Stenograph
Prepending to a string is not going to be efficient, perhaps it may be better to append to the string and reverse it when you are finished?Ashely
@GWW: Is that really more efficient?Degraw
Do you mean prepend to a std::string? Then prepend what?Degraw
@TomalakGeret'kal: Every time you prepend I'm assuming the whole string has to be moved over using some sort of memcpy operation.Ashely
@GWW: Yea, probably; once. How's that worse than looping through the original string and copying data one byte at a time? I'm not aware of a low-level API function to reverse the data in a block of memory.Degraw
@TomalakGeret'kal: Sorry, I have explained myself poorly. I meant if the poster is repeatedly prepending to the string it may be more efficient to instead append and then reverse the string after all of the appends have finished.Ashely
@GWW: OK. It's still unlikely; you'd be better off knowing how many new characters you need, and just perform them all at the same time in a single string. Reversing is unlikely to give you anything. Especially since you'd have to pre-reverse the original string too.Degraw
J
132

There actually is a similar function to the non-existing std::string::push_front, see the below example.


Documentation of std::string::insert

#include <iostream>
#include <string>

int
main (int argc, char *argv[])
{
  std::string s1 (" world");
  std::string s2 ("ello");

  s1.insert (0,     s2); // insert the contents of s2 at offset 0 in s1
  s1.insert (0, 1, 'h'); // insert one (1) 'h'        at offset 0 in s1

  std::cout << s1 << std::endl;
}

output:

hello world

Since prepending a string with data might require both reallocation and copy/move of existing data you can get some performance benefits by getting rid of the reallocation part by using std::string::reserve (to allocate more memory before hand).

The copy/move of data is sadly quite inevitable, unless you define your own custom made class that acts like std::string that allocates a large buffer and places the first content in the center of this memory buffer.

Then you can both prepend and append data without reallocation and moving data, if the buffer is large enough that is. Copying from source to destination is still, obviously, required though.


If you have a buffer in which you know you will prepend data more often than you append a good alternative is to store the string backwards, and reversing it when needed (if that is more rare).

Judsonjudus answered 12/12, 2011 at 0:24 Comment(1)
I also want to add that if you need to prepend a string with multiple items, you can avoid quadratic-time performance by first appending the items and then rotating them to the front using std::rotate from <algorithm>.Australopithecus
O
23
myString.insert(0, otherString);

Let the Standard Template Library writers worry about efficiency; make use of all their hours of work rather than re-programming the wheel.

This way does both of those.

As long as the STL implementation you are using was thought through you'll have efficient code. If you're using a badly written STL, you have bigger problems anyway :)

Operculum answered 27/1, 2014 at 11:11 Comment(1)
An inefficient algorithm can't be rescued by a smart implementation.Bunco
A
10

If you're using std::string::append, you should realize the following is equivalent:

std::string lhs1 = "hello ";
std::string lhs2 = "hello ";
std::string rhs = "world!";

lhs1.append(rhs);
lhs2 += rhs; // equivalent to above
// Also the same:
// lhs2 = lhs2 + rhs;

Similarly, a "prepend" would be equivalent to the following:

std::string result = "world";
result = "hello " + result;
// If prepend existed, this would be equivalent to
// result.prepend("hello");

You should note that it's rather inefficient to do the above though.

Ascertain answered 12/12, 2011 at 0:18 Comment(3)
Does anyone know why this answer was downvoted? Are its claims incorrect somehow? What are we, readers 5 years in the future, meant to infer from unexplained downvotes? That helps no one. Can someone elaborate, at long last?Kimble
@Kimble As mentioned in another answer, using operator+ will have to create a copy of the string. In contrast, using insert() can operate in-place (well, after possibly reallocating the string buffer). This doesn't matter for these small examples, but it might matter for huge strings. With C++11, it is also possible to say "result = "hello " + std::move(result)` in order to avoid the copy.Hogg
@Hogg Thanks! That seems obvious now, after 2 years of further learning and you pointing it out, but it was still worth having actually stated. The move() trick is one that I use sometimes for convenience, but does C++ actually guarantee anywhere that will be optimised by using .insert(), or is that just something library implementors can do if they're clever? I assumed the latter.Kimble
M
2

There is an overloaded string operator+ (char lhs, const string& rhs);, so you can just do your_string 'a' + your_string to mimic push_front.

This is not in-place but creates a new string, so don't expect it to be efficient, though. For a (probably) more efficient solution, use resize to gather space, std::copy_backward to shift the entire string back by one and insert the new character at the beginning.

Meenen answered 12/12, 2011 at 0:18 Comment(1)
You should not use std::string::resize to "gather more space", the function will make the internal buffer bigger if required, that's true. But it will also pad the current string with char()'s (also known as NULL (ie. the value 0). See this codepad paste for a demonstration.Briquet
M
1

The problem is efficiency: inserting to the beginning of the string is more expensive as it requires both reallocation and shifting of existing characters.

If you are only prepending to the string, the most efficient way is appending, and then either reverse the string, or even better, go through the string in reverse order.

string s;
for (auto c: "foobar") {
  s.push_back(c);
}
for (auto it=s.rbegin(); it!=s.rend(); it++) {
  // do something
}

If you need a mix of prepending and appending, I'd suggest using a deque, and then construct a string from it. The double-ended queue supports O(1) insertion and deletion at the beginning and end.

deque<char> dq;
dq.push_front('f');
dq.push_back('o');
dq.push_front('o');
string s {dq.begin(), dq.end()};
Macedonian answered 15/10, 2022 at 18:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.