169. Majority Element
Posted 阿怪123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了169. Majority Element相关的知识,希望对你有一定的参考价值。
public class Solution { public int majorityElement(int[] nums) { Map<Integer,Integer> mp=new HashMap<Integer,Integer>(); int len=nums.length; int res=0; if(len==1) return nums[0]; for(int i=0;i<len;i++) { if(mp.containsKey(nums[i])) { if(mp.get(nums[i])>=len/2) { res=nums[i]; break; } else mp.put(nums[i],mp.get(nums[i])+1); } else mp.put(nums[i],1); } return res; } }
以上是关于169. Majority Element的主要内容,如果未能解决你的问题,请参考以下文章