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

来源:互联网 发布:php中app接口代码 编辑:程序博客网 时间:2024/05/29 04:55

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

      看到题目的第一感觉就是要先把未排序的数组排序,排序的最小时间复杂度(快速排序) ON*logN , 加上遍历,时间复杂度为: ON*logN+N

   第二种方法是考虑每次删除两个不同的数,那么在剩下的数中,出现的次数仍然超过总数的一半。通过不断重复这个过程,不断排除掉其它的数,最终找到那个出现次数超过一半的数字。这个方法,免去了上述思路一、二的排序,也避免了思路三空间ON)的开销,总得说来,时间复杂度只有ON),空间复杂度为O1),不失为最佳方法。

   还有就是可以利用哈希表。如果所选的数组的元素比较集中的话可以使用哈希表统计每个元素出现的次数,时间复杂度是O(N),但是题目并没有给出数组元素的范围。次方法也不太好。

有了上面的思路后,我们不难写出这样实现代码:

 方法一:使用快排的思想实现

<pre name="code" class="cpp"><pre name="code" class="cpp" style="color: rgb(77, 77, 77); line-height: 25px;"><span style="line-height: 23px; white-space: pre-wrap; font-family: NSimSun; color: blue; font-size: 9.5pt;"><span class="kwd" style="line-height: 22.1667px; color: rgb(0, 0, 136);">bool</span></span><span style="line-height: 23px; white-space: pre-wrap; font-family: NSimSun; font-size: 9.5pt;"><span class="pln" style="line-height: 22.1667px; color: rgb(0, 0, 0);"> g_bInputInvalid </span><span class="pun" style="line-height: 22.1667px; color: rgb(102, 102, 0);">=</span><span class="pln" style="line-height: 22.1667px; color: rgb(0, 0, 0);"> </span><span style="color: blue;"><span class="kwd" style="line-height: 22.1667px; color: rgb(0, 0, 136);">false</span><span class="pun" style="line-height: 22.1667px; color: rgb(102, 102, 0);">;</span></span></span>

int Partition(int A[],int low,int high)  {      int pivot=A[low];      while(low <high)      {          while(low<high && A[high]>=pivot) --high;          A[low]=A[high];          while(low<high && A[low]<=pivot) ++low;          A[high]=A[low];      }      A[low]=pivot;      return low;  }  int HalfData(int a[],int len)  {      int start=0;      int end=len-1;      int middle=len >> 1;      int index=Partition(a,start,end);      printf("index1:%d\n",index);      while(index != middle)      {          if(index > middle)          {              end=index-1;              index=Partition(a,start,end);          }          else          {              start=index+1;              index=Partition(a,start,end);          }      }      return a[index];  }  


   方法二:遍历数组时保存两个值,一个是数组中的数字,另一个是次数,当遍历到下一个数字时,如果下一个数字与之前保存的数字相同,则次数加1,如果不同,则次数减1,如果次数为0,则需要保存下一个数字,并把次数设定为1。由于我们要找的数字出现的次数比其他所有数字的出现次数之和还要大,则要找的数字肯定是组后一次把次数设为1时对应的数字。该方法的时间复杂度为O(n),空间复杂度为O(1)。

<pre name="code" class="cpp" style="color: rgb(77, 77, 77); line-height: 25px;"><pre name="code" class="cpp" style="color: rgb(77, 77, 77); line-height: 25px;"><span style="line-height: 23px; white-space: pre-wrap; font-family: NSimSun; color: blue; font-size: 9.5pt;"><span class="kwd" style="line-height: 22.1667px; color: rgb(0, 0, 136);">bool</span></span><span style="line-height: 23px; white-space: pre-wrap; font-family: NSimSun; font-size: 9.5pt;"><span class="pln" style="line-height: 22.1667px; color: rgb(0, 0, 0);"> g_bInputInvalid </span><span class="pun" style="line-height: 22.1667px; color: rgb(102, 102, 0);">=</span><span class="pln" style="line-height: 22.1667px; color: rgb(0, 0, 0);"> </span><span style="color: blue;"><span class="kwd" style="line-height: 22.1667px; color: rgb(0, 0, 136);">false</span><span class="pun" style="line-height: 22.1667px; color: rgb(102, 102, 0);">;</span></span></span>

int MoreThanHalfNum(int* numbers, unsigned int length){    if(numbers == NULL && length == 0)    {        g_bInputInvalid = true;        return 0;    }     g_bInputInvalid = false;     int result = numbers[0];    int times = 1;    for(int i = 1; i < length; ++i)    {        if(times == 0)        {            result = numbers[i];            times = 1;        }        else if(numbers[i] == result)            times++;        else            times--;    }     // verify whether the input is valid    times = 0;    for(int i = 0; i < length; ++i)    {        if(numbers[i] == result)            times++;    }     if(times * 2 <= length)    {        g_bInputInvalid = true;        result = 0;    }     return result;}


0 0
原创粉丝点击