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,971 questions

51,913 answers

573 users

How to random (shuffle) array of integers in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static Random _random = new Random();

        // Fisher-Yates shuffle
        static void Shuffle<T>(T[] array)
        {
            int n = array.Length;
            for (int i = 0; i < n; i++)
            {
                int rand = i + _random.Next(n - i);
                T temp = array[rand];
                array[rand] = array[i];
                array[i] = temp;
            }
        }
        static void Main()
        {
            int[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

            Shuffle(array);

            foreach (int n in array) {
                Console.Write("{0} ", n);
            }
            Console.WriteLine();
        }
    }
}


/*
run:
   
4 9 1 8 2 5 6 7 3
 
*/

 



answered Aug 25, 2018 by avibootz

Related questions

1 answer 164 views
1 answer 159 views
2 answers 175 views
175 views asked Aug 25, 2018 by avibootz
3 answers 330 views
330 views asked Jul 31, 2018 by avibootz
1 answer 143 views
143 views asked Oct 30, 2021 by avibootz
2 answers 444 views
...