show/hide this revision's text 4 Reverse3 was a duplicate and had a different profiling

here's my approach:

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

Edit: 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 :-)

Reverse1: 157,508ms

Reverse2: 63,133ms

Reverse3: 10,462ms

Reverse5: 35,975ms

Reverse6: 3,710ms

Reverse7: 245,391ms

Linq approach: 64,325ms (Changed Target Framework from 2.0 to 3.5 for this)

show/hide this revision's text 3 added Linq approach

here's my approach:

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

Edit: 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 :-)

Reverse1: 157,508ms

Reverse2: 63,133ms

Reverse3: 10,462ms

Reverse5: 35,975ms

Reverse6: 3,710ms

Reverse7: 245,391ms

Linq approach: 64,325ms (Changed Target Framework from 2.0 to 3.5 for this)

show/hide this revision's text 2 Actually profiled stuff.

here's my approach:

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

Edit: 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 :-)

Reverse1: 157,508ms

Reverse2: 63,133ms

Reverse3: 10,462ms

Reverse5: 35,975ms

Reverse6: 3,710ms

Reverse7: 245,391ms

show/hide this revision's text 1