How about in the online games? How would we shuffle a deck of card?
Shuffling should be done such that all the cards must be distributed uniformly i.e. every card should be distributed across the positions with equal probability. For the case of n items, all the items should be distributed with the probability of 1N.
Algorithm
- We start by initializing position=0.
- Randomly pick an item from the array, range of the selection being [position,N], where N = size of the array.
- Swap the position of this random item with the item in the location position.
- Increase position by 1 and repeat from step 2 until position==N
Following this algorithm, it can be guaranteed that that each of the items in the array is uniformly distributed across the array with the probability of 1n.
- Probability of first item = 1N
- Probability of second item = probability of not being selected for first time×probability of getting selected out of (N-1) items = N−1N×1N−1 = 1N
- Probability of third item = probability of not being selected for first time×probability of not being selected for second time× probability of getting selected out of (N-2) items = N−1N×N−2N−1×1N−2 = 1N
- and so on...
Implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Random; | |
/** | |
* This is a Shuffler class that can be used to shuffle given input array | |
* uniformly | |
* | |
* @author Sabbir Manandhar | |
* @version 1.0 | |
*/ | |
public class Shuffler { | |
private Random random; | |
/** | |
* Constructor to Shuffler instance. | |
* initializes the variable random | |
* | |
*/ | |
public Shuffler() { | |
random = new Random(); | |
} // Shuffler | |
//---------------------------------------------------------------------------- | |
/** | |
* returns random number between two given range | |
* @param lo lower limit of the range | |
* @param hi upper limit of the range | |
*/ | |
private int getRandom(int lo, int hi) { | |
return random.nextInt(hi - lo + 1) + lo; | |
} // getRandom | |
//---------------------------------------------------------------------------- | |
/** | |
* swaps two items in the given array | |
* @param nums input array in which swapping will be done | |
* @param i first index to swap | |
* @param j second index to swap | |
*/ | |
private void swap(int[] nums, int i, int j) { | |
int temp = nums[i]; | |
nums[i] = nums[j]; | |
nums[j] = temp; | |
} // swap | |
//---------------------------------------------------------------------------- | |
/** | |
* methods that shuffles the given array | |
* @param nums array to shuffle | |
*/ | |
public void shuffle(int[] nums) { | |
for (int i = 0; i < nums.length - 1 ; i++ ) { | |
int rand = getRandom(i, nums.length-1); | |
swap(nums, i, rand); | |
} | |
} // shuffle | |
//---------------------------------------------------------------------------- | |
/** | |
* driver method | |
*/ | |
public static void main(String[] args) { | |
int[] nums = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; | |
Shuffler shuffler = new Shuffler(); | |
shuffler.shuffle(nums); | |
for (int item : nums) { | |
System.out.print(item + " "); | |
} | |
} // main | |
//---------------------------------------------------------------------------- | |
} // Shuffler |
No comments:
Post a Comment