LCOF剑指offer--面试题39. 数组中出现次数超过一半的数字

数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。

你可以假设数组是非空的,并且给定的数组总是存在多数元素。

示例 1:

输入: [1, 2, 3, 2, 2, 2, 5, 4, 2]

输出: 2

限制:

1 <= 数组长度 <= 50000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
分析:
哈希表
解答:

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        unordered_map<int,int> hashmap;

        for(int i=0;i<nums.size();i++){
            hashmap[nums[i]]++;
            if(hashmap[nums[i]]>nums.size()/2){
                return nums[i];
            }
        }

        return 0;

    }
};

你可能感兴趣的:(算法学习)