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

开发 前端
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。你可以假设数组是非空的,并且给定的数组总是存在多数元素。

[[439477]]

本文转载自微信公众号「程序员千羽」,作者程序员千羽 。转载本文请联系程序员千羽公众号。

Leetcode : https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof/

GitHub : https://github.com/nateshao/leetcode/blob/main/algo-notes/src/main/java/com/nateshao/sword_offer/topic_31_majorityElement/Solution.java

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

“题目描述 :数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。你可以假设数组是非空的,并且给定的数组总是存在多数元素。难度:简单示例:

  1. 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 
  2.  
  3. 输出: 2 

解题思路:

“本文将 “数组中出现次数超过一半的数字” 简称为 “众数” 。需要注意的是,数学中众数的定义为 “数组中出现次数最多的数字” ,与本文定义不同。

本题常见的三种解法:

  • 哈希表统计法:遍历数组 nums ,用HashMap统计各数字的数量,即可找出众数。此方法时间和空间复杂度均为O(N)。
  • 数组排序法:将数组nums 排序,数组中点的元素一定为众数。
  • 摩尔投票法:核心理念为票数正负抵消。此方法时间和空间复杂度分别为O(N)和0(1),为本题的 最佳解法。

摩尔投票法:

“设输入数组 nums 的众数为x,数组长度为n。

推论一: 若记众数的票数为+1,非众数的票数为-1,则一定有所有数字的票数和> 0。推论二: 若数组的前a个数字的票数和=0,则数组剩余(n-a)个数字的票数和一定仍> 0,即后(n- a)个数字的众数仍为x。

根据以上推论,记数组首个元素为n1,众数为x,遍历并统计票数。当发生票数和= 0时,剩余数组的众 数-定不变,这是由于:

  • 当n1=x:抵消的所有数字中,有一半是众数x。
  • 当n1≠x:抵消的所有数字中,众数x的数量最少为0个,最多为一半。

利用此特性,每轮假设发生票数和 = 0 都可以 缩小剩余数组区间 。当遍历完成时,最后一轮假设的数字即为众数。

算法流程:

  • 初始化: 票数统计 votes = 0 , 众数 x;
  • 循环: 遍历数组 nums 中的每个数字 num ;
    • 当 票数 votes 等于 0 ,则假设当前数字 num 是众数;
    • 当 num = x 时,票数 votes 自增 1 ;当 num != x 时,票数 votes 自减 1 ;
  • 返回值: 返回 x 即可;

复杂度分析:

  • 时间复杂度 O(N) : N 为数组 nums 长度。
  • 空间复杂度 O(1) : votes 变量使用常数大小的额外空间。
  1. public static int majorityElement1(int[] nums) { 
  2.         int x = 0, votes = 0; 
  3.         for(int num : nums){ 
  4.             if(votes == 0) x = num; 
  5.             votes += num == x ? 1 : -1;// votes = votes + ( num == x ? 1 : -1); 
  6.         } 
  7.         return x; 
  8.     } 

拓展: 由于题目说明 给定的数组总是存在多数元素 ,因此本题不用考虑 数组不存在众数 的情况。若考虑,需要加入一个 “验证环节” ,遍历数组 nums 统计 x 的数量。

  • 若 x 的数量超过数组长度一半,则返回 x ;
  • 否则,返回未找到众数;

时间和空间复杂度不变,仍为 O(N)和 O(1) 。

  1. public int majorityElement11(int[] nums) { 
  2.         int x = 0, votes = 0, count = 0; 
  3.         for(int num : nums){ 
  4.             if(votes == 0) x = num; 
  5.             votes += num == x ? 1 : -1; 
  6.         } 
  7.         // 验证 x 是否为众数 
  8.         for(int num : nums) 
  9.             if(num == x) count++; 
  10.         return count > nums.length / 2 ? x : 0; // 当无众数时返回 0 
  11.     } 

代码

  1. package com.nateshao.sword_offer.topic_31_majorityElement; 
  2.  
  3. import java.util.Arrays; 
  4.  
  5. /** 
  6.  * @date Created by 邵桐杰 on 2021/12/5 17:16 
  7.  * @微信公众号 程序员千羽 
  8.  * @个人网站 www.nateshao.cn 
  9.  * @博客 https://nateshao.gitee.io 
  10.  * @GitHub https://github.com/nateshao 
  11.  * @Gitee https://gitee.com/nateshao 
  12.  * Description: 剑指 Offer 39. 数组中出现次数超过一半的数字 
  13.  * 题目描述:数组中有一个数字出现的次数超过数组长度的一半,请找出这个数 
  14.  * 字。如果不存在则输出 0。 
  15.  */ 
  16. public class Solution { 
  17.     public static void main(String[] args) { 
  18.         int[] arr = {1, 2, 3, 2, 2, 2, 5, 4, 2}; 
  19.         int i1 = majorityElement1(arr); 
  20.         int i2 = majorityElement2(arr); 
  21.         int i3 = majorityElement3(arr); 
  22.         System.out.println("i = " + i1); // i = 2 
  23.         System.out.println("i2 = " + i2); 
  24.         System.out.println("i3 = " + i3); 
  25.  
  26.     } 
  27.     /******************** 精选 *********************/ 
  28.     public static int majorityElement1(int[] nums) { 
  29.         int x = 0, votes = 0; 
  30.         for(int num : nums){ 
  31.             if(votes == 0) x = num; 
  32.             votes += num == x ? 1 : -1;// votes = votes + ( num == x ? 1 : -1); 
  33.         } 
  34.         return x; 
  35.     } 
  36.     /**************** 拓展 *********************/ 
  37.     public int majorityElement11(int[] nums) { 
  38.         int x = 0, votes = 0, count = 0; 
  39.         for(int num : nums){ 
  40.             if(votes == 0) x = num; 
  41.             votes += num == x ? 1 : -1; 
  42.         } 
  43.         // 验证 x 是否为众数 
  44.         for(int num : nums) 
  45.             if(num == x) count++; 
  46.         return count > nums.length / 2 ? x : 0; // 当无众数时返回 0 
  47.     } 
  48.     /****************** 剑指offer **********************/ 
  49.     /** 
  50.      * 思路:将首次出现的数 count+1,与之后的数进行比较,相等则+1,否则—1, 
  51.      * 最后进行校验是否超过长度的一半。 
  52.      * 
  53.      * @param nums 
  54.      * @return 
  55.      */ 
  56.     public static int majorityElement2(int[] nums) { 
  57.         int count = 0; 
  58.         int candidate = 0; 
  59.         for (int num : nums) { 
  60.             if (count == 0) candidate = num; 
  61.             count += (num == candidate) ? 1 : -1; 
  62.         } 
  63.         return checkMoreThanHalf(nums, candidate) ? candidate : 0; 
  64.     } 
  65.  
  66.     private static boolean checkMoreThanHalf(int[] array, int number) { 
  67.         int times = 0; 
  68.         for (int i : array) { 
  69.             if (i == number) times++; 
  70.         } 
  71.         return times * 2 >= array.length; 
  72.     } 
  73.  
  74.  
  75.     public static int majorityElement3(int[] nums) { 
  76.         Arrays.sort(nums); 
  77.         return nums[nums.length/2]; 
  78.     } 

 参考文献:https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof/solution/mian-shi-ti-38-zi-fu-chuan-de-pai-lie-hui-su-fa-by/

 

责任编辑:武晓燕 来源: 程序员千羽
相关推荐

2020-07-13 09:48:58

云计算云安全数据

2015-07-27 10:24:01

苹果中国

2020-12-04 10:11:26

Unsafejava并发包

2013-02-25 10:11:35

4GLTE商用网络

2018-12-20 09:04:33

谷歌搜索移动

2020-06-05 15:02:19

混合云多云云计算

2022-02-07 09:53:15

物联网设备漏洞物联网

2013-11-27 15:48:56

移动中间件厂商

2018-06-03 08:49:21

2013-01-11 13:28:36

移动互联网访问流量iOS

2017-02-27 16:54:20

HTTPS网络流量互联网

2017-02-24 13:53:38

HTTPS流量互联网

2016-12-16 13:07:30

云存储运营混合云

2010-09-17 16:21:33

系统升级

2011-08-17 10:53:16

Firefox 7

2019-10-30 15:22:37

数字化转型IDC零售

2009-04-30 09:01:25

微软操作系统Windows 7

2023-07-20 12:32:42

Linux桌面

2017-09-18 16:29:55

多云OpenStack无服务器

2010-07-12 09:28:59

Windows 764位
点赞
收藏

51CTO技术栈公众号