Answers for "list order by c# sorting algorithms"

C#
2

basic sorting algorithms c#

//Basic bubble sort
public static void IntArrayBubbleSort (int[] data)
      {
         int i, j;
         int N = data.Length;

         for (j=N-1; j>0; j--) {
            for (i=0; i<j; i++) {
               if (data [i] > data [i + 1])
                  exchange (data, i, i + 1);
            }
         }
      }
Posted by: Guest on March-12-2020
-1

c# sort list

using System;

class Program
{
    static void Main()
    {
        string[] colors = new string[]
        {
            "orange",
            "blue",
            "yellow",
            "aqua",
            "red"
        };
        // Call Array.Sort method.
        Array.Sort(colors);
        foreach (string color in colors)
        {
            Console.WriteLine(color);
        }
    }
}
Posted by: Guest on March-23-2020

Code answers related to "list order by c# sorting algorithms"

C# Answers by Framework

Browse Popular Code Answers by Language