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 randomize an array in Java

2 Answers

0 votes
public class MyClass {
     public static void shuffle(int [] arr) {
        for (int i = 0; i < arr.length; i++) {
            int index = (int) (Math.random() * arr.length);
            
            int tmp = arr[i];
            arr[i] = arr[index];
            arr[index] = tmp;
        }
    }
    public static void main(String args[]) {
        int[] arr = {1, 2, 3, 4, 5, 6};
         
        shuffle(arr); 
  
        for (Integer n : arr) {
            System.out.printf("%2d", n);
        }
    }
}




/*
run:

 4 5 2 1 3 6

*/

 



answered Mar 28, 2021 by avibootz
0 votes
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class MyClass {
    public static void main(String args[]) {
        Integer[] arr = {1, 2, 3, 4, 5, 6};
         
        List<Integer> list = Arrays.asList(arr);

		Collections.shuffle(list);

		list.toArray(arr);

		System.out.println(Arrays.toString(arr));
    }
}




/*
run:

[5, 1, 6, 4, 3, 2]

*/

 



answered Mar 28, 2021 by avibootz

Related questions

1 answer 80 views
80 views asked Aug 6, 2024 by avibootz
1 answer 101 views
2 answers 445 views
2 answers 175 views
175 views asked Feb 20, 2018 by avibootz
2 answers 126 views
3 answers 192 views
...