博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Majority Element
阅读量:4986 次
发布时间:2019-06-12

本文共 1078 字,大约阅读时间需要 3 分钟。

package cn.edu.xidian.sselab.array;

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

/**
 *
 * @author zhiyong wang
 * title: Majority Element
 * content:
 *         Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.
 *         You may assume that the array is non-empty and the majority element always exist in the array.
 *
 */
public class MajorityElement {


    //从头开始遍历数组中所有的数,用一个HashMap记录每个数字及数字出现的次数,选出次数大于数组个数一半的数值
    public int majorityElement(int[] nums){

        int length = nums.length;
        int result = nums[0];
        Map<Integer,Integer> times = new HashMap<Integer,Integer>();
        for(int i=0;i<length;i++){

            if(times.containsKey(nums[i])){

                int time = times.get(nums[i]) + 1;
                if(time >= length / 2){

                    result = nums[i];
                    break;
                }
                times.put(nums[i], time);
            }else{

                times.put(nums[i], 0);
            }
        }
        return result;
    }
    
    //从leetcode学习的方法,非常巧妙,调用Arrays自动排序接口,因为搜求结果一定会大于一半,所以中间的数值一定就是所求的值
    public int majorityElement1(int[] nums){

        Arrays.sort(nums);
        return nums[nums.length / 2];
    }
    
}

转载于:https://www.cnblogs.com/wzyxidian/p/5065022.html

你可能感兴趣的文章
Hadoop HDFS学习总结
查看>>
C#wxpay和alipay
查看>>
Combination Sum
查看>>
WCF开发框架形成之旅---结合代码生成工具实现快速开发
查看>>
Spring事务管理
查看>>
JS||JQUERY常用语法
查看>>
talend hive数据导入到mysql中
查看>>
ORA-01093: ALTER DATABASE CLOSE only permitted with no sessions connected
查看>>
linux下mysql配置文件my.cnf详解
查看>>
获取微信用户列表Openid
查看>>
架构必备词汇
查看>>
SublimeText快捷键操作
查看>>
Python开发 基礎知識 (未完代補)
查看>>
监听器的使用,以及实现, 测试
查看>>
java基础二 分支循环
查看>>
python--002--数据类型(list、tuple)
查看>>
把近期的小错误整理一下
查看>>
动态规划 —— 背包问题一 专项研究学习
查看>>
51nod 1571 最近等对 | 线段树 离线
查看>>
关于parseInt的看法
查看>>