show/hide this revision's text 8 added unicode

Help needed on this community wiki This stuff needs to be tested with unicode strings for both correctness(the Xor method) and speed.

This is turning out to be a surprisingly tricky question.

Note If you want to support the full Unicode UTF16 charset read this. 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.

show/hide this revision's text 7 added 160 characters in body

Help needed on this community wiki This stuff needs to be tested with unicode strings for both correctness(the Xor method) and speed.

This is turning out to be a surprisingly tricky question.

I would recommend using Array.Reverse for most cases as it is coded natively and it is very simple to maintain and understand.

It seems to outperform StringBuilder in all the cases I tested.

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;
}

There is a second approach that can be faster for certain string lengths which uses Xor.

    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);
    }

Here is a performance comparison between the StringBuilder, Array.Reverse and Xor method.

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.Reverse (Length: {0})", l), ReverseArray, iterations, text);
                Benchmark(String.Format("Xor (Length: {0})", l), ReverseXor, iterations, text);
                Console.WriteLine();    
            }

            Console.Read();
        }
    }
}

Here are the results:

26251 Ticks String Builder (Length: 1) : called 10000 times.
33373 Ticks Array.Reverse (Length: 1) : called 10000 times.
20162 Ticks Xor (Length: 1) : called 10000 times.

51321 Ticks String Builder (Length: 10) : called 10000 times.
37105 Ticks Array.Reverse (Length: 10) : called 10000 times.
23974 Ticks Xor (Length: 10) : called 10000 times.

66570 Ticks String Builder (Length: 15) : called 10000 times.
26027 Ticks Array.Reverse (Length: 15) : called 10000 times.
24017 Ticks Xor (Length: 15) : called 10000 times.

101609 Ticks String Builder (Length: 25) : called 10000 times.
28472 Ticks Array.Reverse (Length: 25) : called 10000 times.
35355 Ticks Xor (Length: 25) : called 10000 times.

161601 Ticks String Builder (Length: 50) : called 10000 times.
35839 Ticks Array.Reverse (Length: 50) : called 10000 times.
51185 Ticks Xor (Length: 50) : called 10000 times.

230898 Ticks String Builder (Length: 75) : called 10000 times.
40628 Ticks Array.Reverse (Length: 75) : called 10000 times.
78906 Ticks Xor (Length: 75) : called 10000 times.

312017 Ticks String Builder (Length: 100) : called 10000 times.
52225 Ticks Array.Reverse (Length: 100) : called 10000 times.
110195 Ticks Xor (Length: 100) : called 10000 times.

2970691 Ticks String Builder (Length: 1000) : called 10000 times.
292094 Ticks Array.Reverse (Length: 1000) : called 10000 times.
846585 Ticks Xor (Length: 1000) : called 10000 times.

305564115 Ticks String Builder (Length: 100000) : called 10000 times.
74884495 Ticks Array.Reverse (Length: 100000) : called 10000 times.
125409674 Ticks Xor (Length: 100000) : called 10000 times.

It seems that Xor can be faster for short strings.

show/hide this revision's text 6 corrected answer

Using Array.Reverse

This is a better approach.

Note: you have turning out to use the Array var, cause Array.Reverse returns be a void and reverses the array in placesurprisingly tricky question.

This approach is faster than

I would recommend using a StringBuilder cause its done Array.Reverse for most cases as it is coded natively and more efficientlyit is very simple to maintain and understand.

It seems to outperform StringBuilder in all the cases I tested.

There is a second approach that can be faster for certain string lengths which uses Xor.

    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);

Here is a performance comparison between the StringBuilderand , Array.Reverse and Xor method. (Array.Reverse can be 10x faster depending on the string length)

Console.WriteLine("{0} Milliseconds Ticks {1} : called {2} times.", sw.ElapsedMillisecondssw.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) public static void Main(string[] argsstring StringOfLength(int length) Random random = new Random(); for (int i = 0; i < 10000length; i++) sb.Append("aB")sb.Append(Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)))); string longString = 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 shortString text = "Hello"; Benchmark("Long String String Builder"StringOfLength(l); Benchmark(String.Format("String Builder (Length: {0})", l), ReverseSB, 10000iterations, longString)text); Benchmark("Long String Array.Reverse"Benchmark(String.Format("Array.Reverse (Length: {0})", l), ReverseArray, 10000iterations, longString)text); Benchmark("Short String String Builder"Benchmark(String.Format("Xor (Length: {0})", l), ReverseSBReverseXor, 100000iterations, shortString)text); Benchmark("Short String Array.Reverse", ReverseArray, 100000, shortString)Console.WriteLine();

The results

Here are herethe results:

4171 Milliseconds Long 

26251 Ticks String Builder (Length: 1) : called 10000 times.33373 Ticks Array.Reverse (Length: 1) : called 10000 times.20162 Ticks Xor (Length: 1) : called 10000 times.51321 Ticks String Builder (Length: 10) : called 10000 times.464 Milliseconds Long 37105 Ticks Array.Reverse (Length: 10) : called 10000 times.23974 Ticks Xor (Length: 10) : called 10000 times.66570 Ticks String Builder (Length: 15) : called 10000 times.26027 Ticks Array.Reverse (Length: 15) : called 10000 times.19 Milliseconds Short 24017 Ticks Xor (Length: 15) : called 10000 times.101609 Ticks String Builder (Length: 25) : called 10000 times.28472 Ticks Array.Reverse (Length: 25) : called 10000 times.35355 Ticks Xor (Length: 25) : called 10000 times.161601 Ticks String Builder (Length: 50) : called 100000 10000 times.14 Milliseconds Short 35839 Ticks Array.Reverse (Length: 50) : called 10000 times.51185 Ticks Xor (Length: 50) : called 10000 times.230898 Ticks String Builder (Length: 75) : called 10000 times.40628 Ticks Array.Reverse (Length: 75) : called 10000 times.78906 Ticks Xor (Length: 75) : called 10000 times.312017 Ticks String Builder (Length: 100) : called 10000 times.52225 Ticks Array.Reverse (Length: 100) : called 10000 times.110195 Ticks Xor (Length: 100) : called 10000 times.2970691 Ticks String Builder (Length: 1000) : called 10000 times.292094 Ticks Array.Reverse (Length: 1000) : called 10000 times.846585 Ticks Xor (Length: 1000) : called 10000 times.305564115 Ticks String Builder (Length: 100000) : called 10000 times.74884495 Ticks Array.Reverse (Length: 100000) : called 10000 times.125409674 Ticks Xor (Length: 100000) : called 10000 times.

It seems that Xor can be faster for short strings.

show/hide this revision's text 5 Added null handling
show/hide this revision's text 4 added 2298 characters in body
show/hide this revision's text 3 added 12 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 2 corrected this ..
show/hide this revision's text 1