Best way to reverse a string in C# 2.0 - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T23:01:07Zhttp://stackoverflow.com/feeds/question/228038http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-09Best way to reverse a string in C# 2.0Guy2008-10-23T00:31:32Z2008-11-11T00:17:37Z
<p>I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:</p>
<pre><code>public string Reverse(string text)
{
char[] cArray = text.ToCharArray();
string reverse = String.Empty;
for (int i = cArray.Length - 1; i > -1; i--)
{
reverse += cArray[i];
}
return reverse;
}
</code></pre>
<p>Personally I'm not crazy about the function and am convinced that there's a better way to do it. Is there?</p>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228053#2280530Answer by Michael Stum for Best way to reverse a string in C# 2.0Michael Stum2008-10-23T00:37:31Z2008-10-23T01:24:35Z<p>here's my approach:</p>
<pre><code>private string Reverse(string input)
{
Stack<char> resultStack = new Stack<char>();
foreach (char c in input)
{
resultStack.Push(c);
}
StringBuilder sb = new StringBuilder();
while (resultStack.Count > 0)
{
sb.Append(resultStack.Pop());
}
return sb.ToString();
}
</code></pre>
<p><strong>Edit:</strong>
Ok, I ran the various approaches to the profiler, using the string "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12" and 10.000 Reversals, counting "Time With Children (ms)". And yes, i know that there is no Reverse4, because it was a duplicate. Ran the test 3 times, results did not fluctuate too much for me. So yes, my approach sucks by a factor of 10, so i'll change my function in my code now :-)</p>
<p><a href="http://stackoverflow.com/questions/228038/#228053">Reverse1: 157,508ms</a></p>
<p><a href="http://stackoverflow.com/questions/228038/#228056">Reverse2: 63,133ms</a></p>
<p><a href="http://stackoverflow.com/questions/228038/#228068">Reverse5: 35,975ms</a></p>
<p><a href="http://stackoverflow.com/questions/228038/#228084">Reverse6: 3,710ms</a></p>
<p><a href="http://stackoverflow.com/questions/228038/#228106">Reverse7: 245,391ms</a></p>
<p><a href="http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-20#228127">Linq approach: 64,325ms (Changed Target Framework from 2.0 to 3.5 for this)</a></p>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228055#2280552Answer by Mike Thompson for Best way to reverse a string in C# 2.0Mike Thompson2008-10-23T00:37:50Z2008-10-23T00:58:56Z<p>Have a look at the wikipedia entry <a href="http://en.wikipedia.org/wiki/Extension_method" rel="nofollow">here</a>. They implement the String.Reverse extension method. This allows you to write code like this:</p>
<pre><code>string s = "olleh";
s.Reverse();
</code></pre>
<p>They also use the ToCharArray/Reverse combination that other answers to this question suggest. The source code looks like this:</p>
<pre><code>public static string Reverse(this string input)
{
char[] chars = input.ToCharArray();
Array.Reverse(chars);
return new String(chars);
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228056#2280566Answer by Greg Beech for Best way to reverse a string in C# 2.0Greg Beech2008-10-23T00:38:32Z2008-10-23T01:12:33Z<p>Firstly you don't need to call <code>ToCharArray</code> as a string can already be indexed as a char array, so this will save you an allocation.</p>
<p>The next optimisation is to use a <code>StringBuilder</code> to prevent unnecessary allocations (as strings are immutable, concatenating them makes a copy of the string each time). To further optimise this we pre-set the length of the <code>StringBuilder</code> so it won't need to expand its buffer.</p>
<pre><code>public string Reverse(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
StringBuilder builder = new StringBuilder(text.Length);
for (int i = text.Length - 1; i >= 0; i--)
{
builder.Append(text[i]);
}
return builder.ToString();
}
</code></pre>
<p><strong>Edit: Performance Data</strong></p>
<p>I tested this function and the function using <code>Array.Reverse</code> with the following simple program, where <code>Reverse1</code> is one function and <code>Reverse2</code> is the other:</p>
<pre><code>static void Main(string[] args)
{
var text = "abcdefghijklmnopqrstuvwxyz";
// pre-jit
text = Reverse1(text);
text = Reverse2(text);
// test
var timer1 = Stopwatch.StartNew();
for (var i = 0; i < 10000000; i++)
{
text = Reverse1(text);
}
timer1.Stop();
Console.WriteLine("First: {0}", timer1.ElapsedMilliseconds);
var timer2 = Stopwatch.StartNew();
for (var i = 0; i < 10000000; i++)
{
text = Reverse2(text);
}
timer2.Stop();
Console.WriteLine("Second: {0}", timer2.ElapsedMilliseconds);
Console.ReadLine();
}
</code></pre>
<p>It turns out that for short strings the <code>Array.Reverse</code> method is around twice as quick as the one above, and for longer strings the difference is even more pronounced. So given that the <code>Array.Reverse</code> method is both simpler and faster I'd recommend you use that rather than this one. I leave this one up here just to show that it isn't the way you should do it (much to my surprise!)</p>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228060#22806015Answer by petebob796 for Best way to reverse a string in C# 2.0petebob7962008-10-23T00:40:43Z2008-10-23T02:53:49Z<pre><code>public static string Reverse( string s )
{
char[] charArray = s.ToCharArray();
Array.Reverse( charArray );
return new string( charArray );
}
</code></pre>
<p>I think the above works not tested, although the stringbuilder class may also have a reverse function I haven't checked that though.</p>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228062#22806228Answer by Sam Saffron for Best way to reverse a string in C# 2.0Sam Saffron2008-10-23T00:41:04Z2008-10-23T05:42:04Z<p>This is turning out to be a surprisingly tricky question. </p>
<p>I would recommend using Array.Reverse for most cases as it is coded natively and it is very simple to maintain and understand. </p>
<p>It seems to outperform StringBuilder in all the cases I tested. </p>
<pre><code>public string Reverse(string text)
{
if (text == null) return null;
// this was posted by petebob as well
char[] array = text.ToCharArray();
Array.Reverse(array);
return array;
}
</code></pre>
<p>There is a second approach that can be faster for certain string lengths which <a href="http://www.sqljunkies.com/WebLog/amachanic/archive/2006/07/17/22253.aspx" rel="nofollow">uses Xor</a>. </p>
<pre><code> public static string ReverseXor(string s)
{
if (s == null) return null;
char[] charArray = s.ToCharArray();
int len = s.Length - 1;
for (int i = 0; i < len; i++, len--)
{
charArray[i] ^= charArray[len];
charArray[len] ^= charArray[i];
charArray[i] ^= charArray[len];
}
return new string(charArray);
}
</code></pre>
<p><strong>Note</strong> If you want to support the full Unicode UTF16 charset <a href="http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-20#228460">read this</a>. And use the implementation there instead. It can be further optimized by using one of the above algorithms and running through the string to clean it up after the chars are reversed.</p>
<p>Here is a performance comparison between the StringBuilder, Array.Reverse and Xor method. </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
namespace ConsoleApplication4
{
class Program
{
delegate string StringDelegate(string s);
static void Benchmark(string description, StringDelegate d, int times, string text)
{
Stopwatch sw = new Stopwatch();
sw.Start();
for (int j = 0; j < times; j++)
{
d(text);
}
sw.Stop();
Console.WriteLine("{0} Ticks {1} : called {2} times.", sw.ElapsedTicks, description, times);
}
public static string ReverseXor(string s)
{
char[] charArray = s.ToCharArray();
int len = s.Length - 1;
for (int i = 0; i < len; i++, len--)
{
charArray[i] ^= charArray[len];
charArray[len] ^= charArray[i];
charArray[i] ^= charArray[len];
}
return new string(charArray);
}
public static string ReverseSB(string text)
{
StringBuilder builder = new StringBuilder(text.Length);
for (int i = text.Length - 1; i >= 0; i--)
{
builder.Append(text[i]);
}
return builder.ToString();
}
public static string ReverseArray(string text)
{
char[] array = text.ToCharArray();
Array.Reverse(array);
return (new string(array));
}
public static string StringOfLength(int length)
{
Random random = new Random();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++)
{
sb.Append(Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))));
}
return sb.ToString();
}
static void Main(string[] args)
{
int[] lengths = new int[] {1,10,15,25,50,75,100,1000,100000};
foreach (int l in lengths)
{
int iterations = 10000;
string text = StringOfLength(l);
Benchmark(String.Format("String Builder (Length: {0})", l), ReverseSB, iterations, text);
Benchmark(String.Format("Array.Rhttp://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228063#2280632Answer by Ash for Best way to reverse a string in C# 2.0Ash2008-10-23T00:41:32Z2008-10-23T00:41:32Z<p>"Better way" depends on what is more important to you in your situation, performance, elegance, maintainability etc.</p>
<p>Anyway, here's an approach using Array.Reverse:</p>
<pre><code>string inputString="The quick brown fox jumps over the lazy dog.";
char[] charArray = inputString.ToCharArray();
Array.Reverse(charArray);
string reversed = new string(charArray);
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228084#2280843Answer by Mike Two for Best way to reverse a string in C# 2.0Mike Two2008-10-23T00:48:33Z2008-10-23T00:48:33Z<p>Try using Array.Reverse</p>
<pre><code>
public string Reverse(string str)
{
char[] array = str.ToCharArray();
Array.Reverse(array);
return new string(array);
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228094#2280941Answer by JPrescottSanders for Best way to reverse a string in C# 2.0JPrescottSanders2008-10-23T00:53:26Z2008-10-23T00:53:26Z<p>Had to submit a recursive example:</p>
<pre><code>private static string Reverse(string str)
{
if (str.Length == 1)
return str;
else
return str[str.Length - 1] + Reverse(str.Substring(0, str.Length - 1));
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228166#2281662Answer by aku for Best way to reverse a string in C# 2.0aku2008-10-23T01:17:58Z2008-10-23T01:17:58Z<p>Sorry for long post, but this might be interesting</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
public static string ReverseUsingArrayClass(string text)
{
char[] chars = text.ToCharArray();
Array.Reverse(chars);
return new string(chars);
}
public static string ReverseUsingCharacterBuffer(string text)
{
char[] charArray = new char[text.Length];
int inputStrLength = text.Length - 1;
for (int idx = 0; idx <= inputStrLength; idx++)
{
charArray[idx] = text[inputStrLength - idx];
}
return new string(charArray);
}
public static string ReverseUsingStringBuilder(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
StringBuilder builder = new StringBuilder(text.Length);
for (int i = text.Length - 1; i >= 0; i--)
{
builder.Append(text[i]);
}
return builder.ToString();
}
private static string ReverseUsingStack(string input)
{
Stack<char> resultStack = new Stack<char>();
foreach (char c in input)
{
resultStack.Push(c);
}
StringBuilder sb = new StringBuilder();
while (resultStack.Count > 0)
{
sb.Append(resultStack.Pop());
}
return sb.ToString();
}
public static string ReverseUsingXOR(string text)
{
char[] charArray = text.ToCharArray();
int length = text.Length - 1;
for (int i = 0; i < length; i++, length--)
{
charArray[i] ^= charArray[length];
charArray[length] ^= charArray[i];
charArray[i] ^= charArray[length];
}
return new string(charArray);
}
static void Main(string[] args)
{
string testString = string.Join(";", new string[] {
new string('a', 100),
new string('b', 101),
new string('c', 102),
new string('d', 103),
});
int cycleCount = 100000;
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
for (int i = 0; i < cycleCount; i++)
{
ReverseUsingCharacterBuffer(testString);
}
stopwatch.Stop();
Console.WriteLine("ReverseUsingCharacterBuffer: " + stopwatch.ElapsedMilliseconds + "ms");
stopwatch.Reset();
stopwatch.Start();
for (int i = 0; i < cycleCount; i++)
{
ReverseUsingArrayClass(testString);
}
stopwatch.Stop();
Console.WriteLine("ReverseUsingArrayClass: " + stopwatch.ElapsedMilliseconds + "ms");
stopwatch.Reset();
stopwatch.Start();
for (int i = 0; i < cycleCount; i++)
{
ReverseUsingStringBuilder(testString);
}
stopwatch.Stop();
Console.WriteLine("ReverseUsingStringBuilder: " + stopwatch.ElapsedMilliseconds + "ms");
stopwatch.Reset();
stopwatch.Start();
for (int i = 0; i < cycleCount; i++)
{
ReverseUsingStack(testString);
}
stopwatch.Stop();
Console.WriteLine("ReverseUsingStack: " + stopwatch.ElapsedMilliseconds + "ms");
stopwatch.Reset();
stopwatch.Start();
for (int i = 0; i < cycleCount; i++)
{
ReverseUsingXOR(testString);
}
stopwatch.Stop();
Console.WriteLine("ReverseUsingXOR: " + stopwatch.ElapsedMilliseconds + "ms");
}
}
}
</code></pre>
<p>Results:</p>
<ul>
<li>ReverseUsingCharacterBuffer: 346ms </li>
<li>ReverseUsingArrayClass: 87ms</li>
<li>ReverseUsingStringBuilder: 824ms</li>
<li>ReverseUsingStack: 2086ms</li>
<li>ReverseUsingXOR: 319ms</li>
</ul>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228376#2283763Answer by Greg Beech for Best way to reverse a string in C# 2.0Greg Beech2008-10-23T02:49:32Z2008-10-23T19:55:55Z<p>If you want to play a really dangerous game, then this is by far the fastest way there is (around four times faster than the <code>Array.Reverse</code> method). It's an in-place reverse using pointers.</p>
<p>Note that I really do not recommend this for any use, ever (<a href="http://stackoverflow.com/questions/229346/why-should-i-never-use-an-unsafe-block-to-modify-a-string">have a look here for some reasons why you should not use this method</a>), but it's just interesting to see that it can be done, and that strings aren't really immutable once you turn on unsafe code.</p>
<pre><code>public static unsafe string Reverse(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
fixed (char* pText = text)
{
char* pStart = pText;
char* pEnd = pText + text.Length - 1;
for (int i = text.Length / 2; i >= 0; i--)
{
char temp = *pStart;
*pStart++ = *pEnd;
*pEnd-- = temp;
}
return text;
}
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228460#2284606Answer by Bradley Grainger for Best way to reverse a string in C# 2.0Bradley Grainger2008-10-23T03:40:07Z2008-10-23T04:08:22Z<p>If the string contains Unicode data (strictly speaking, non-BMP characters) the other methods that have been posted will corrupt it, because you cannot swap the order of high and low surrogate code units when reversing the string. (More information about this can be found on <a href="http://code.logos.com/blog/2008/10/how_to_reverse_a_unicode_string_in_c.html" rel="nofollow">my blog</a>.)</p>
<p>The following code sample will correctly reverse a string that contains non-BMP characters, e.g., "\U00010380\U00010381" (Ugaritic Letter Alpa, Ugaritic Letter Beta).</p>
<pre><code>public static string Reverse(this string input)
{
if (input == null)
throw new ArgumentNullException("input");
// allocate a buffer to hold the output
char[] output = new char[input.Length];
for (int outputIndex = 0, inputIndex = input.Length - 1; outputIndex < input.Length; outputIndex++, inputIndex--)
{
// check for surrogate pair
if (input[inputIndex] >= 0xDC00 && input[inputIndex] <= 0xDFFF &&
inputIndex > 0 && input[inputIndex - 1] >= 0xD800 && input[inputIndex - 1] <= 0xDBFF)
{
// preserve the order of the surrogate pair code units
output[outputIndex + 1] = input[inputIndex];
output[outputIndex] = input[inputIndex - 1];
outputIndex++;
inputIndex--;
}
else
{
output[outputIndex] = input[inputIndex];
}
}
return new string(output);
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/228461#2284610Answer by Guy for Best way to reverse a string in C# 2.0Guy2008-10-23T03:40:47Z2008-10-23T03:40:47Z<p>Before I discovered that everyone was posting their test results to this thread I wrote this up <a href="http://guyellisrocks.com/coding/string-reverse-in-c/" rel="nofollow">on my blog</a>. Essentially the results of my tests on 10 and 500 character strings show that the Array.Reverse() function wins the game and that's why I've marked this one as the correct answer.</p>
<p>Much obliged to everyone for helping me with this. You guys rock!</p>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0/279644#2796440Answer by Yan for Best way to reverse a string in C# 2.0Yan2008-11-11T00:17:37Z2008-11-11T00:17:37Z<p>Is there a way to reverse a string without using arrays? maybe using substrings? Also, what exactly does the for loop of eg. for (int i = 0, i>0, i++) do? lastly, how do you output text within the same textbox on the second line?</p>