您好,登錄后才能下訂單哦!
#include <iostream> using namespace std; int main() { int a[]={1,2,2,2,2,3,4,5,2,2,4,2,2,2,3}; int count=1,number=a[0]; // number =0 while in int a[]={1,1,1,1,1,3,4,5,6};error for(int i=1;i<sizeof(a)/sizeof(a[0]);i++) { if(a[i]==a[i-1])count++; else count--; if(count==0) number=a[i]; } cout<<"number= "<<number; } /***************** * http://www.anycodes.cn/zh/ {1,2,2,2,2,3,4,5,2,2,4,2,2,2,3}; A[I] COUNT NUMBER 2 0 (2) 2 1 2 2 2 2 2 3 2 3 2 2 4 1 2 5 0 (5) 2 -1 5 2 0 (2) 4 -1 2 2 -2 2 2 -1 2 2 0 (2) 3 1 2 ******************/
和劍指offer那的計數為1的判斷 思想一致代碼風格不一樣
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。