互連網面試題:一個數組中找出三個出現奇數次的數字中的一個

來源:互聯網
上載者:User

2、異形數(25分)
在一個長度為n的整形數組a裡,除了三個數字只出現一次外,其他的數字都出現了2次。請寫程式輸出任意一個只出現一次的數字,程式時間和空間複雜度越小越好。
例如: a ={1,3,7,9,5,9,4,3,6,1,7},輸出4或5或6

 

//異形數問題#include <iostream>using namespace std;int lowbit(int x)  {      return x&~(x-1);  }    void find(int a[] , int n)  {      int i , xors;      xors = 0;  for(i = 0 ; i < n ; ++i)  {xors ^= a[i];  }    // 三個數兩兩的異或後lowbit有兩個相同,一個不同,可以分為兩組      int fips = 0;      for(i = 0 ; i < n ; ++i)  {fips ^= lowbit(xors ^ a[i]);  }    // 表示的是:flips=lowbit(a^b)^lowbit(a^c)^lowbit(b^c)       int b;    // 假設三個只出現一次的其中一個數為b      b = 0;      for(i = 0 ; i < n ; ++i)      {          if(lowbit(xors ^ a[i]) == fips)  {b ^= a[i];  }    }      // 成功找到三個數中一個數      cout<<b<<endl;  } void main(){int a[]={1,1,2,2,3,4,4,5,6};find(a,sizeof(a)/sizeof(a[0]));}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.