题解 | #数组中出现次数超过一半的数字#

数组中出现次数超过一半的数字

https://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param numbers int整型vector 
     * @return int整型
     */
    int MoreThanHalfNum_Solution(vector<int>& numbers)
     {
        // write code here
         int countarr[10001]={0};
         int ret = 0;
        for(auto& element : numbers)
        {
              countarr[element]++;
        } 
        for(int i =0 ; i< 10001 ;i++)
        {
            if(countarr[i] > numbers.size()/2)
            {
               ret = i;
               break;
            }

        }
        
        return ret;
    }
};

#我的实习求职记录#
全部评论

相关推荐

程序员鼠鼠_春招版:都很烂大街,rpc也基本没人问,考研吧,不然就包装一段实习再去
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务