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 code produces this output:
|
||||||||||
|
|
|
This is the simplest way in C++. |
||||||||||
|
|
|
You use |
||||||
|
|
|
Non-evil C, assuming the common case where the string is a null-terminated
|
||||||||
|
|
|
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. |
|||
|
|
|
Note that the beauty of std::reverse is that it works with
|
|||
|
|
|
|
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:
|
||||
|
|
|
Read Kernigham and Richie void reverse(char s[]) {
} |
||
|
|
|
|
In case you are using GLib, it has two functions for that, g_strreverse() and g_utf8_strreverse() |
||
|
|
