Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Selection_Sort selection = new Selection_Sort(10);

            selection.Sort();
            Console.ReadKey();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Selection Sort Example\n");
            Selection_Sort selection = new Selection_Sort(10);

            selection.Sort();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            Selection_Sort selection = new Selection_Sort(10);

            selection.Sort();
        }