tags: 数组
数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2。如果不存在则输出0。
参考
如果是排序好的数组,那么我们就很容易统计每个数组出现的次数,而题目中并没有说数组是排序好的,因此我们需要先排序(最好的情况下$O(nlogn)$),后统计(一次遍历即可$O(n)$),因此这种方法的时间复杂度为$O(nlogn)$
上面基于排序的算法比较保守,因为它没有充分利用出现次数超过一半这个条件。
数组中有一个数字出现的次数超过了数组长度的一半,那么如果我们把这个数组排序,那么排序之后位于数组中间的那个数字一定就是那个出现次数超过数组长度一半的数字
也就是说这个数字其实就是统计学上的中位数,即长度为N的数组中的$N/2$大的元素,因此我们的题目最后成为返回数组中第K($K=Len/2$)大的数。
因此我们的问题成为查找一个数组中的K大的元素
我们写过快速排序算法,其中的Partition()方法是一个最重要的方法,该方法返回一个index,能够保证index位置的数是已排序完成的,在index左边的数都比index所在的数小,在index右边的数都比index所在的数大。那么本题就可以利用这样的思路来解。
- 通过Partition()返回index,如果index==mid,那么就表明找到了数组的中位数;如果index<mid,表明中位数在[index+1,end]之间;如果index>mid,表明中位数在[start,index-1]之间。知道最后求得index==mid循环结束。
- 根据求得的index,遍历一遍数组,每当出现一个等于index所指向的数时time++,最后判断time是否大于数组长度的一半,如果大于则表明index所指向的数就是所求的数,如果不是,则表明不存在一个数出现的次数超过数组长度的一半。
注意: 这种方法会改变数组, 如果面试官不允许, 则不能使用
class Solution {
public:
int MoreThanHalfNum_Solution(vector<int> numbers) {
if(numbers.empty())
return 0;
int length=numbers.size();
int middle=length>>1;
int start=0;
int end=length-1;
int index=Partion(numbers,start,end);
while(index!=middle){
if(index>middle){
end=index-1;
index=Partion(numbers,start,end);
}
if(index<middle){
start=index+1;
index=Partion(numbers,start,end);
}
}
int times=0;
for(int i=0;i<length;i++){
if(numbers[i]==numbers[index])
times++;
}
if(times>middle)
return numbers[middle];
else
return 0;
}
int Partion(vector<int>& numbers, int start, int end ){
if(numbers.empty()||start<0||end<0||start>end)
throw new std::logic_error("invalid input");
int index=RandomInRange(start,end);
int small=start-1;
swap(numbers[index],numbers[end]);
for(int i=start;i<end;i++){
if(numbers[i]<numbers[end]){
small++;
if(small!=i)
swap(numbers[i],numbers[small]);
}
}
small++;
swap(numbers[small],numbers[end]);
return small;
}
int RandomInRange(int start, int end){
srand(time(NULL));
return start+rand()%(end-start+1);
}
};
还是充分利用出现次数超过一半这个条件
数组中有一个数字出现的次数超过数组长度的一半,也就是说它出现的次数比其他所有数字出现的次数之和还要多
我们考虑阵地攻守(镇守阵地),遇见一个友军就抱成团,遇见一个敌军就同归于尽,那么最后战场上剩余的肯定就是人数(出现次数)最多的那个队伍(数字)
采用阵地攻守的思想
- 第一个数字作为第一个士兵,守阵地;count = 1;
- 遇到相同元素,count++; 遇到不相同元素,即为敌人,同归于尽,count--;
- 当遇到count为0的情况,又以新的i值作为守阵地的士兵,继续下去,到最后还留在阵地上的士兵,有可能是主元素。
- 再加一次循环,记录这个士兵的个数看是否大于数组一般即可。
由于我们要找的数字出现的次数比他所有数字出现的次数之和还要多,那么要找的数字肯定是最后一次把次数设为1时对应的数字,因为少的元素都已经阵亡了,战场上仅剩下的一定是人数数目要多的那个队伍
class Solution {
public:
int MoreThanHalfNum_Solution(vector<int> numbers) {
if(numbers.empty())
return 0;
int times=1;
int res=numbers[0];
for(int i=1;i<numbers.size();i++){
if(times==0){
times=1;
res=numbers[i];
}
else if(numbers[i]==res){
times++;
}
else
times--;
}
times=0;
for(int i=0;i<numbers.size();i++){
if(numbers[i]==res)
times++;
}
if (times>numbers.size()/2)
return res;
else
return 0;
}
};
这个思想有一个简单的实现变种,就是现的次数超过数组长度的一半,表明这个数字出现的次数比其他数字出现的次数的总和还多。
所以我们可以考虑每次删除两个不同的数,那么在剩下的数中,出现的次数仍然超过总数的一半。通过不断重复这个过程,不断排除掉其它的数,最终找到那个出现次数超过一半的数字。这个方法,
例:数组 a[5]={0,1,2,1,1}; 我们要查找的数字为1,操作步骤为:遍历整个数组,然后每次删除不同的两个数字,过程如下: 0 1 2 1 1 =>2 1 1=>1
具体实现:我们在考虑删除两个不同的数字的时候,实际上可以同过计数来实现,而不是物理上真正的删除。 在遍历数组的时候保存两个值:一个是数组中的一个数字,一个是次数。当我们遍历到下一个数字的时候,如果下一个数字和我们之前保存的数字相同,则次数加1。如果下一个数字和我们之前保存的数字不同,则次数减1。如果次数为零,我们需要保存下一个数字,并把次数设为1。由于我们要找的数字出现的次数比其他所有数字出现的次数之和还要多,那么要找的数字肯定是最后一次把次数设为1时对应的数字。
STL的count函数原型如下
template<class InputIterator, class T> inline
size_t count(
InputIterator First,
InputIterator Last,
const T& Value
)
algorithm头文件定义了一个count的函数,其功能类似于find。 这个函数使用一对迭代器和一个值做参数,返回这个值出现次数的统计结果。 count只能统计某个特定元素出现的次数,不够灵活,因此STL提供了count_if,前两个参数是iterator(迭代器),表示查找半闭合区间的前后两个位置,第三个参数为一个用户定义的predicate function object,而predicate意思就是说是一个返回值是bool型的仿函数(function object,也称functor)。
template<class _InIt, class _Pr> inline
typename iterator_traits<_InIt>::difference_type
count_if(_InIt _First, _InIt _Last, _Pr _Pred);
核心代码:
class Solution
{
public:
int MoreThanHalfNum_Solution(vector<int> numbers)
{
// return numbers.empty( ) ? 0 : *find_if(numbers.begin( ), numbers.end( ),[numbers](int x)
// {
// return (count(numbers.begin( ),numbers.end( ), x) * 2) > numbers.size();
// });
if(numbers.size( ) == 0)
{
return 0;
}
for(int i = 0 ; i < numbers.size( ); i++)
{
debug <<"num = " <<numbers[i] <<", count = " <<count(numbers.begin( ), numbers.end( ), numbers[i]) <<endl;
if(count(numbers.begin( ), numbers.end( ), numbers[i]) * 2 > numbers.size( ))
{
return numbers[i];
}
}
return 0;
}
};
我们可以使用一个map来建立数字-=>出现次数的一个映射,这样最后遍历找到出现次数大于数组长度一半的那个元素即可
class Solution
{
public:
int MoreThanHalfNum_Solution(vector<int> numbers)
{
map<int,int> hmap; // 建立数字到出现次数的映射
int nsize = numbers.size();
for(int i = 0 ; i < nsize; i ++)
{
if(hmap.find(numbers[i]) != hmap.end( ))
{
hmap[numbers[i]] += 1;
}
else
{
hmap[numbers[i]] = 1;
}
}
// 查找到出现次数最多的那个元素
for(map<int,int>::iterator it = hmap.begin( );
it != hmap.end( );
++it)
{
debug <<it->first <<", " <<it->second <<endl;
if(it->second * 2 > nsize)
{
return it->first;
}
}
return 0;
}
};
昨天看到了扩展问题,
- 如果有且只有一个的出现最多的那个数字出现的次数是数组长度的一半呢?又或者是一半减1?
我们还是继续从我们之前的那道超过一半的数来入手,我们的"阵地攻守"的解法是每遇到2个不同的数,就删除,剩下的就是那个出现次数超过一半的数字。
这个方法对于超过一半的情况可以成立,对于扩展问题就不再行得通了。
但是他们的本质是相同的,
- 对于一个长度为2n的数组,如果有个数出现次数超过n,那么至少有1组,连续2个数是重复的相应的,于是"阵地攻守"中每次不同的元素就删除(同归于尽)就可以找到那个元素
- 如果出现的次数为n, 那么至少有一组连续3个数是重复。每3个不重复的数删除一次
- 如果是n-1, 就是一组至少有连续4个数重复。每4个不重复的数删除一次
参考
class Solution {
public:
int MoreThanHalfNum_Solution(vector<int> numbers) {
if(numbers.empty())
return 0;
int times=1;
int res=numbers[0];
for(int i=1;i<numbers.size();i++){
if(times==0){
times=1;
res=numbers[i];
}
else if(numbers[i]==res){
times++;
}
else
times--;
}
times=0;
for(int i=0;i<numbers.size();i++){
if(numbers[i]==res)
times++;
}
if (times>numbers.size()/2)
return res;
else
return 0;
}
};