Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to implement selection sort in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void selection_sort(int[] arr)
        {
            int min, tmp;

            for (int i = 0; i < arr.Length - 1; i++)
            {
                min = i;

                for (int j = i + 1; j < arr.Length; j++)
                {
                    if (arr[j] < arr[min])
                        min = j;
                }
                if (min != i)
                {
                    tmp = arr[i];
                    arr[i] = arr[min];
                    arr[min] = tmp;
                }
            }
        }
        static void Main(string[] args)
        {
            int[] arr = new int[20]; 

            Random rnd = new Random();

            for (int i = 0; i < arr.Length; i++)
                arr[i] = rnd.Next(1, 1000);

            selection_sort(arr);

            for (int i = 0; i < arr.Length; i++)
                Console.WriteLine(arr[i]);
        }
    }
}


/*
run:
       
30
74
93
155
347
366
383
389
405
442
551
560
573
579
589
671
789
801
923
930
   
*/

 



answered May 12, 2018 by avibootz

Related questions

2 answers 545 views
545 views asked May 13, 2018 by avibootz
1 answer 204 views
1 answer 178 views
1 answer 202 views
202 views asked May 12, 2018 by avibootz
1 answer 228 views
228 views asked May 12, 2018 by avibootz
1 answer 176 views
176 views asked May 12, 2018 by avibootz
1 answer 186 views
186 views asked May 12, 2018 by avibootz
...