How do you reverse a string in C or C++ without requiring a separate buffer to hold the reversed string?
|
Evil C:
(This is XOR-swap thing. Take care to note that you must avoid swapping with self, because a^a==0.) Ok, fine, let's fix the UTF-8 chars...
|
|||||||||||||||||||||
|
This is the simplest way in C++. |
|||||||||||||||||||
|
|
Read Kernighan and Ritchie
|
||||
|
|
You use |
|||||||||||||
|
|
Non-evil C, assuming the common case where the string is a null-terminated
|
|||||||||
|
|
Note that the beauty of std::reverse is that it works with
|
||||
|
|
|
It's been a while and I don't remember which book taught me this algorithm, but I thought it was quite ingenious and simple to understand:
|
|||
|
|
|
In the interest of completeness, it should be pointed out that there are representations of strings on various platforms in which the number of bytes per character varies depending on the character. Old-school programmers would refer to this as DBCS (Double Byte Character Set). Modern programmers more commonly encounter this in UTF-8 (as well as UTF-16 and others). There are other such encodings as well. In any of these variable-width encoding schemes, the simple algorithms posted here (evil, non-evil or otherwise) would not work correctly at all! In fact, they could even cause the string to become illegible or even an illegal string in that encoding scheme. See Juan Pablo Califano's answer for some good examples. std::reverse() potentially would still work in this case, as long as your platform's implementation of the Standard C++ Library (in particular, string iterators) properly took this into account. |
|||||
|
|
If you're looking for reversing NULL terminated buffers, most solutions posted here are OK. But, as Tim Farley already pointed out, these algorithms will work only if it's valid to assume that a string is semantically an array of bytes (i.e. single-byte strings), which is a wrong assumption, I think. Take for example, the string "año" (year in Spanish). The Unicode code points are 0x61, 0xf1, 0x6f. Consider some of the most used encodings: Latin1 / iso-8859-1 (single byte encoding, 1 character is 1 byte and vice versa):
UTF-8:
UTF-16 Big Endian:
UTF-16 Little Endian:
|
|||||||
|
This code produces this output:
|
|||||||||||||
|
|
In case you are using GLib, it has two functions for that, g_strreverse() and g_utf8_strreverse() |
|||
|
|
|
I like Evgeny's K&R answer. However, it is nice to see a version using pointers. Otherwise, it's essentially the same:
|
||||
|
|
|
Here's my take on it in C. Did it for practice and tried to be as concise as possible! You enter a string via the command line, i.e ./program_name "enter string here"
|
||||
|
|
|
Recursive function to reverse a string in place (no extra buffer, malloc). Short, sexy code. Bad, bad stack usage.
|
|||
|
|
|
but I think the XOR swap algorithm is the best...
|
||||
|
|
|
Yet another:
|
|||||
|
|
Another C++ way (though I would probably use std::reverse() myself :) as being more expressive and faster)
The C way (more or less :) ) and please, be careful about XOR trick for swapping, compilers usually cannot optimize that. In such case it is usually much slower.
|
|||
|
|
|
Using C libraries.
Using C++ libraries (the same technique)
|
|||||||||
|
|
|||||||
|

