题目描述
打乱一个没有重复元素的数组。
示例:
// 以数字集合 1, 2 和 3 初始化数组。 int[] nums = {1,2,3}; Solution solution = new Solution(nums); // 打乱数组 [1,2,3] 并返回结果。任何 [1,2,3]的排列返回的概率应该相同。 solution.shuffle(); // 重设数组到它的初始状态[1,2,3]。 solution.reset(); // 随机返回数组[1,2,3]打乱后的结果。 solution.shuffle();
问题分析
此题的关键是要保证概率是随机分布的。在实现shuffle函数时,遍历数组,在遍历到的当前位置以及之后的范围中,随机选一个位置,然后交换这两个位置的元素。当遍历数组结束后,也就完成了数组的打乱。
代码实现
class Solution {
private:
vector<int> vec;
public:
Solution(vector<int> nums) : vec(nums){
}
/** Resets the array to its original configuration and return it. */
vector<int> reset() {
return vec;
}
/** Returns a random shuffling of the array. */
vector<int> shuffle() {
vector<int> res = vec;
for(int i = 0; i < res.size(); i++){
int temp = i + rand() % (res.size() - i);
swap(res[temp], res[i]);
}
return res;
}
};
/**
* Your Solution object will be instantiated and called as such:
* Solution obj = new Solution(nums);
* vector<int> param_1 = obj.reset();
* vector<int> param_2 = obj.shuffle();
*/