码迷,mamicode.com
首页 > 编程语言 > 详细

面试题:数组中出现次数超过一半的数字

时间:2018-08-21 22:37:49      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:调用   hal   col   put   util   方法   port   次数   试题   

题目描述:

方法1:哈希表

import java.util.HashMap;
public class Solution {
    public int MoreThanHalfNum_Solution(int [] array) {
        HashMap<Integer,Integer> map = new HashMap<>();
        for(int i=0;i<array.length;i++){
            Integer key=array[i];
            Integer value=map.get(key);
            if(value!=null){
                map.put(key,value+1);
            }else{
                map.put(key,1);
            }
        }
       for(int i=0;i<array.length;i++){
           int val=map.get(array[i]);
           if(val>array.length/2) return array[i];
       } 
        return 0;
    }
}

Map.containsKey()方法--判断Map集中是否包含指定键名

Map.get()方法--判断某个value值在map中出现了几次

方法2:排序后计数,java.util.Arrays中有Arrays.sort()方法直接调用

 

面试题:数组中出现次数超过一半的数字

标签:调用   hal   col   put   util   方法   port   次数   试题   

原文地址:https://www.cnblogs.com/Aaron12/p/9514543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!