LeetCode 384. 打乱数组(rand)

1. 题目

打乱一个没有重复元素的数组。

示例:

// 以数字集合 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();

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shuffle-an-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

  • 遍历每个数字,将其与随机位置的数字交换
    for(i = 0; i < n; ++i)
    swap(ans[i], ans[rand()%n]);
class Solution {
	vector<int> origin;
	vector<int> ans;
public:
    Solution(vector<int>& nums) {
        origin = ans = nums;
    }
    
    /** Resets the array to its original configuration and return it. */
    vector<int> reset() {
        return origin;
    }
    
    /** Returns a random shuffling of the array. */
    vector<int> shuffle() {
        int n = origin.size(),i;
        for(i = 0; i < n; ++i)
        	swap(ans[i], ans[rand()%n]);
        return ans;
    }
};

LeetCode 384. 打乱数组(rand)_第1张图片

你可能感兴趣的:(LeetCode)