我是靠谱客的博主 超级白开水,最近开发中收集的这篇文章主要介绍Leetcode刷题笔记(c++)_剑指 Offer 39. 数组中出现次数超过一半的数字,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

排序

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        sort(nums.begin(),nums.end());
        return nums[nums.size()/2];
    }
};

在这里插入图片描述

双指针

class Solution {
public:
    int majorityElement(vector<int>& nums) {
        int n=nums.size();
        sort(nums.begin(),nums.end());
        int left=0,right=n-1;
        while(right>=left){
            if(nums[right]==nums[left])return nums[left];
            right--;
            left++;
        }
        return 0;
    }
};

在这里插入图片描述

哈希映射

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

在这里插入图片描述

最后

以上就是超级白开水为你收集整理的Leetcode刷题笔记(c++)_剑指 Offer 39. 数组中出现次数超过一半的数字的全部内容,希望文章能够帮你解决Leetcode刷题笔记(c++)_剑指 Offer 39. 数组中出现次数超过一半的数字所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部