Question

In java Shuffle an ArrayList without collections.shuffle.

In java Shuffle an ArrayList without collections.shuffle.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

public class test{
   public static void shuffleList(List<Integer> l) {
       int n = l.size();
       Random random = new Random();
       random.nextInt();
       for (int i = 0; i < n; i++) {
           int change = i + random.nextInt(n - i);
           int helper = l.get(i);
           l.set(i, l.get(change));
           l.set(change, helper);
       }
   }
   public static void main(String args[]){
       ArrayList<Integer> list = new ArrayList<Integer>();
       list.add(1);
       list.add(2);
       list.add(3);
       list.add(4);
       list.add(5);
       System.out.println("Initial list: " + list);
       shuffleList(list);
       System.out.println("Shuffled list: " + list);
   }
}

19 20e public static void main(String args) 21 23 24 25 26 27 28 29 ArrayList<Integer> list new ArrayList<Integer>); list.add

Add a comment
Know the answer?
Add Answer to:
In java Shuffle an ArrayList without collections.shuffle.
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT