求乙個陣列中出現次數最多的數

2021-06-18 08:39:47 字數 1172 閱讀 6036

描敘:一大推資料裡面,數字與數字之間用空格隔開,找出出現次數最多的乙個數字的演算法

[cpp]view plain

copy

print?

#include

void findmosttimesdigit(int *src , int srclen)  

}  if(tempcount > maxcount)  

else

if(tempcount == maxcount)  

}  printf("出現次數最多的次數:%d\n" , maxcount);  

for(j = 0 ; j <= maxnum ; ++j)  

printf("%d " , result[j]);  

printf("\n");  

}  int main()  

;  int length = sizeof(list) / sizeof(int);  

findmosttimesdigit(list , length);  

return 0;  

}  

c++解法如下:

[cpp]view plain

copy

print?

#include

#include

#include

using

namespace std;  

int main()  

for(map::iterator iter = word_count.begin() ; iter != word_count.end() ; ++iter)  

cout<<(*iter).first<<"\t\t"

<<(*iter).second<

return 0;  

}  

更簡潔的方法如下:

[cpp]view plain

copy

print?

#include

#include

#include

using

namespace std;  

int main()    

求一堆數中出現次數最多的那個數的次數

時間限制 2 sec 記憶體限制 128 mib special judge no 提交 170 答案正確 28 提交狀態 我的提交 討論區 恭喜南陽理工學院獲得全國最佳生態校園。南陽理工學院最近又上新聞了,全國遊客紛紛慕名而來,但是南陽理工學院可不能隨便進,因為裡面有獅子和柿子。除了獅子,南陽理工...

找出乙個陣列中出現次數最多的那個元素

description 找出乙個陣列中出現次數最多的那個元素 input 多組輸入,請處理到檔案結束 每組第一行輸入乙個整數n 不大於20 第二行輸入n個整數 output 找出n個整數中出現次數最多的那個整數,資料保證答案唯一 sample input 41 2 2 3 sample output...

求整數序列中出現次數最多的數

時間限制 400 ms 記憶體限制 65536 kb 長度限制 8000 b 判題程式 standard 作者 張彤彧 浙江大學 本題要求統計乙個整型序列中出現次數最多的整數及其出現次數。輸入格式 輸入在一行中給出序列中整數個數n 0輸出格式 在一行中輸出出現次數最多的整數及其出現次數,數字間以空格...