糖逗 发表于 2020-6-27 10:23:19

C++刷leetcode(398. 随机数索引)【抽样】

本帖最后由 糖逗 于 2020-6-27 13:37 编辑

题目描述:
给定一个可能含有重复元素的整数数组,要求随机输出给定的数字的索引。 您可以假设给定的数字一定存在于数组中。

注意:
数组大小可能非常大。 使用太多额外空间的解决方案将不会通过测试。

示例:

int[] nums = new int[] {1,2,3,3,3};
Solution solution = new Solution(nums);

// pick(3) 应该返回索引 2,3 或者 4。每个索引的返回概率应该相等。
solution.pick(3);

// pick(1) 应该返回 0。因为只有nums等于1。
solution.pick(1);



class Solution {
public:
    vector<int> store;
    Solution(vector<int>& nums) {
      store = nums;
    }
   
    int pick(int target) {
      vector<int> temp;
      for(int i = 0; i < store.size(); i++){
            if(store == target){
                temp.push_back(i);
            }
      }
      int size = temp.size();
      int index = rand() % size;
      return temp;
    }
};


注意事项:
1.rand()函数的参考链接:https://blog.csdn.net/SHAOYEZUIZUISHAUI/article/details/100101114
页: [1]
查看完整版本: C++刷leetcode(398. 随机数索引)【抽样】