题目】:数组中有一个数字出现的次数超过了数组长度的一半,找出这个数字。

例如长度为9的数组{1,2,3,2,2,2,5,4,2}中次数超过了数组长度的一半的数字为2,而长度为8的数组{1,2,3,2,2,2,5,4}则为非法输入。

思路一】:先对数组进行排序,再遍历排序后的数组,统计每个数的次数,出现次数最大的数即为要找的数。

时间复杂度:O(nlgn)+ O(n)= O(nlgn);空间复杂度:O(1)。

思路二】:先对数组进行排序,出现次数超过数组长度的一半的数必然是数组中间的那个数。

时间复杂度:O(nlgn)+ O(1)= O(nlgn);空间复杂度:O(1)。

思路三】:使用Hash表。遍历数组中的每个数字,找到它在哈希表中对应的位置并增加它出现的次数。Hash表只适用于元素的范围(range)比较小的情况,而假设我们的数组是一个整型数组,取值范围跨度太大,所以不适合用哈希表,太浪费空间了。

时间复杂度:O(n);空间复杂度:O(range)。

思路四】:既然该数字为数组的中位数,即长度为n的数组中第[n/2]大数字。那么有没有更快的方法求解?我们已经有成熟的O(n)算法求解数组的第K大数字,即Kmin。那么可以借鉴其思想。

时间复杂度:O(n);空间复杂度:O(1)。

缺点是由于使用了QuickSort的Partition算法,需要交换数组中数字顺序,会修改输入数组。

具体代码如下:

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
 
// 47_NumberAppearMoreThanHalf.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
using namespace std;

bool g_bValid = true;

// swap a and b
void myswap(int &a, int &b)
{
    int t = a;
    a = b;
    b = t;
}

// use Partition of QuickSort to get Kmin
int Partition(int a[], int left, int right) 
{// partition so that a[left..p-1]<a[p] and a[p+1..right]>=a[p]
    int pivot = a[left], i = left , j = right;
    while (i < j) 
    { //  i from left, j from right
        while (a[i] <= pivot ) i++;
        while (a[j] > pivot ) j--;
        if (i < j) 
            myswap(a[i],a[j]);
    }
    myswap(a[left],a[j]);
    return j;
}

// check whether array is valid
bool IsArrayValid(int a[],int n)
{
    g_bValid = true;
    )
    {
        g_bValid = false;
    }
    return g_bValid;
}

// check whether result appears more than half
bool IsAppearMoreThanHalf(int a[],int n,int result)
{
    ;
    ;i<n;++i)
        if (a[i]==result)
            times++;

bool bIsMoreThanHalf = true;
    *times<=n)
    {
        g_bValid = false;
        bIsMoreThanHalf = false;
    }

return bIsMoreThanHalf;
}

// get number which appears more than half of array
int NumberAppearMoreThanHalf_Solution1(int a[],int n)
{// O(n)
    // whether array is valid
    if (!IsArrayValid(a,n))
        ;

;
    ;
    ;
    int pivot = Partition(a,left,right);
    while(pivot!=middle)
    {
        if (pivot<middle)
        {
            left = pivot+;
            pivot =Partition(a,left,right);
        }
        else
        {
            right = pivot-;
            pivot =Partition(a,left,right);
        }
    }
    // pivot == middle
    int result = a[middle];

// check whether result appears more than half
    if (!IsAppearMoreThanHalf(a,n,result))
        ;

return result;
}

// get number which appears more than half of array
int NumberAppearMoreThanHalf_Solution2(int a[],int n)
{// O(n)
    // whether array is valid
    if (!IsArrayValid(a,n))
        ;

];
    ;
    ;i<n;++i)
    {
        if (a[i]==result)
            appearTimes++;
        else
            appearTimes--;

)
        {
            result = a[i];
            appearTimes = ;
        }
    }

// check whether result appears more than half
    if (!IsAppearMoreThanHalf(a,n,result))
        ;

return result;
}

void test_base(int a[],int n)
{
    int result = NumberAppearMoreThanHalf_Solution2(a,n);
    if (g_bValid)
        cout<<result<<endl;
    else
        cout<<"Invalid array."<<endl;
}

void test_case1()
{
    };
    int n = sizeof(a)/sizeof(int);
    test_base(a,n); // 2
}

void test_case2()
{
    };
    int n = sizeof(a)/sizeof(int);
    test_base(a,n); // invalid array
}

void test_main()
{
    test_case1();
    test_case2();
}

int _tmain(int argc, _TCHAR* argv[])
{
    test_main();
    ;
}

思路五】:数组中有个数字出现的次数超过了数组长度的一半。也就是说,有个数字出现的次数比其他所有数字出现次数的和还要多。因此我们可以考虑在遍历数组的时候保存两个值:一个是数组中的一个数字,一个是其对应的出现次数。当我们遍历到下一个数字的时候,如果下一个数字和我们之前保存的数字相同,则次数加1。如果下一个数字和我们之前保存的数字不同,则次数减1。如果次数为零,我们需要保存下一个数字,并把次数设为1。这样最后剩下的数字肯定就是出现次数超过数组长度一半的数字。

时间复杂度:O(n);空间复杂度:O(1)。

相比【思路四】不会修改输入数组。

具体代码如下:

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
// get number which appears more than half of array
int NumberAppearMoreThanHalf_Solution2(int a[],int n)
{// O(n)
    // whether array is valid
    if (!IsArrayValid(a,n))
        ;

];
    ;
    ;i<n;++i)
    {
        if (a[i]==result)
            appearTimes++;
        else
            appearTimes--;

)
        {
            result = a[i];
            appearTimes = ;
        }
    }

// check whether result appears more than half
    if (!IsAppearMoreThanHalf(a,n,result))
        ;

return result;
}

 【参考】

http://zhedahht.blog.163.com/blog/static/25411174201085114733349/

http://www.cnblogs.com/python27/archive/2011/12/15/2289534.html

47. 数组中出现次数超过一半的数字[Number appears more than half times]的更多相关文章

  1. 九度OJ 1370 数组中出现次数超过一半的数字

    题目地址:http://ac.jobdu.com/problem.php?pid=1370 题目描述: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组{1,2 ...

  2. 数组中出现次数超过一半的数字 -java

    数组中出现次数超过一半的数字 -java 方法一: 数组排序,然后中间值肯定是要查找的值. 排序最小的时间复杂度(快速排序)O(NlogN),加上遍历. 方法二: 使用散列表的方式,也就是统计每个数组 ...

  3. 【C语言】统计数组中出现次数超过一半的数字

    //统计数组中出现次数超过一半的数字 #include <stdio.h> int Find(int *arr, int len) { int num = 0; //当前数字 int ti ...

  4. Leetcode - 剑指offer 面试题29:数组中出现次数超过一半的数字及其变形(腾讯2015秋招 编程题4)

    剑指offer 面试题29:数组中出现次数超过一半的数字 提交网址: http://www.nowcoder.com/practice/e8a1b01a2df14cb2b228b30ee6a92163 ...

  5. 《剑指offer》— JavaScript(28)数组中出现次数超过一半的数字

    数组中出现次数超过一半的数字 题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数字2在数组中出现了5次,超 ...

  6. 《剑指offer》第三十九题(数组中出现次数超过一半的数字)

    // 面试题39:数组中出现次数超过一半的数字 // 题目:数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例 // 如输入一个长度为9的数组{1, 2, 3, 2, 2, 2, 5, ...

  7. 剑指Offer - 九度1370 - 数组中出现次数超过一半的数字

    剑指Offer - 九度1370 - 数组中出现次数超过一半的数字2013-11-23 03:55 题目描述: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组 ...

  8. 剑指Offer:数组中出现次数超过一半的数字【39】

    剑指Offer:数组中出现次数超过一半的数字[39] 题目描述 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如,输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于这 ...

  9. 编程算法 - 数组中出现次数超过一半的数字 代码(C)

    数组中出现次数超过一半的数字 代码(C) 本文地址: http://blog.csdn.net/caroline_wendy 题目: 数组中有一个数字出现的次数超过数组长度的一半, 请找出这个数字. ...

随机推荐

  1. XCode7继续用http协议解决办法

    昨天被苹果放鸽子也没升级iOS9,今天升级了Xcode7,同时手机升级了iOS9,发现项目报错,查了查才知道是iOS9不支持不安全的http传输协议,让用https协议,这根本就不x现实,,服务端根本 ...

  2. JS~json日期格式化

    起因 对于从C#返回的日期字段,当进行JSON序列化后,在前台JS里显示的并不是真正的日期,这让我们感觉很不爽,我们不可能为了这东西,把所有日期字段都变成string吧,所以,找了一个JS的扩展方法, ...

  3. 【HDU 1445】Ride to School

    题 题意 骑自行车,等0时开始最早出发的人,一起出发,然后被别人超过时,就追上去,终点距离是4.5km,速度单位是km/s,求到达的时间(s). 分析 贪心,找0时开始最早到的即可. 代码 #incl ...

  4. Oracle自定义函数实例

    1. 传入一个值, 如果该值为0,则返回空. CREATE OR REPLACE FUNCTION Fun_Test(p IN NUMBER) RETURN VARCHAR2 IS v_Result ...

  5. python 学习5--matplotlib画图实践

    ### Python的强大很大一部分原因在于,它提供有很多已经写好的,可以现成用的对象 学习参考: http://www.cnblogs.com/vamei/archive/2013/01/30/28 ...

  6. Java的多线程机制系列:(四)不得不提的volatile及指令重排序(happen-before)

    一.不得不提的volatile volatile是个很老的关键字,几乎伴随着JDK的诞生而诞生,我们都知道这个关键字,但又不太清楚什么时候会使用它:我们在JDK及开源框架中随处可见这个关键字,但并发专 ...

  7. jQuery返回顶部代码组件

    非原创,拿来修改,样式可自定义,div,img都可以,效果如下: 下载地址:http://files.cnblogs.com/files/EasonJim/jquery.topback.rar 项目相 ...

  8. 洛谷P1363 幻想迷宫

    题目描述 背景 Background (喵星人LHX和WD同心协力击退了汪星人的入侵,不幸的是,汪星人撤退之前给它们制造了一片幻象迷宫.) WD:呜呜,肿么办啊…… LHX:momo...我们一定能走 ...

  9. JSP将表单提交并在本页中显示

    代码如下: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8& ...

  10. LeetCode 65 Valid Number

    (在队友怂恿下写了LeetCode上的一个水题) 传送门 Validate if a given string is numeric. Some examples: "0" =&g ...