前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0398 - Random Pick Index

LeetCode 0398 - Random Pick Index

作者头像
Reck Zhang
发布2021-08-11 11:08:02
1940
发布2021-08-11 11:08:02
举报
文章被收录于专栏:Reck Zhang

Random Pick Index

Desicription

Given an array of integers with possible duplicates, randomly output the index of a given target number. You can assume that the given target number must exist in the array.

Note:

The array size can be very large. Solution that uses too much extra space will not pass the judge.

Example:

代码语言:javascript
复制
int[] nums = new int[] {1,2,3,3,3};
Solution solution = new Solution(nums);

// pick(3) should return either index 2, 3, or 4 randomly. Each index should have equal probability of returning.
solution.pick(3);

// pick(1) should return 0. Since in the array only nums[0] is equal to 1.
solution.pick(1);

Solution

代码语言:javascript
复制
class Solution {
private:
    std::map<int, std::vector<int>> map = std::map<int, std::vector<int>>{};
public:
    Solution(const std::vector<int>& nums) {
        for(int i = 0;i < nums.size(); i++) {
            map[nums[i]].push_back(i);
        }
    }

    int pick(int target) {
        auto it = map.find(target);
        if(it == map.end()) {
            return 0;
        }
        return (*it).second[rand() % (*it).second.size()];
    }
};

/**
 * Your Solution object will be instantiated and called as such:
 * Solution* obj = new Solution(nums);
 * int param_1 = obj->pick(target);
 */
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-09-30,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Random Pick Index
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档