HashMap-数组-哈希表-面试题39. 数组中出现次数超过一半的数字

通过介绍三种方法,包括排序、使用HashMap及哈希表C++,来解决面试中查找数组中出现次数超过一半的数字的问题。法一利用了数组排序,法二借助HashMap的特性,法三直接采用哈希表实现高效查找。
摘要由CSDN通过智能技术生成

法一:Arrays.sort(nums); 

class Solution {
    public int majorityElement(int[] nums) {
        Arrays.sort(nums);
        return nums[nums.length/2];
    }
}

 法二:HashMap

class Solution {
    public int majorityElement(int[] nums) {
        HashMap<Integer,Integer>mp=new HashMap();
        for(int num:nums){
            if(mp.containsKey(num))
                mp.put(num,mp.get(num)+1);
            else mp.put(num,1);    
        }
        for(int key:mp.keySet()){
            if(mp.get(key)>nums.length/2) 
                return key;
        }
        return -1;
    }
}

法三:哈希表 c++

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        unordered_map<int,int>mp;
        for(auto it:nums){
            mp[it]++;
            if(mp[it]>nums.size()/2) return it;
        }
        return 0;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值