首頁  >  文章  >  後端開發  >  出現多次的數組元素?

出現多次的數組元素?

WBOY
WBOY轉載
2023-08-26 15:57:06867瀏覽

出現多次的數組元素?

這裡我們會看到一個問題。我們有一個陣列。我們的任務是找出那些頻率大於 1 的元素。假設元素是 {1, 5, 2, 5, 3, 1, 5, 2, 7}。這裡1出現了2次,5出現了3次,2出現了3次,其他只出現了一次。因此輸出將會是{1, 5, 2}

演算法

moreFreq(arr, n)

Begin
   define map with int type key and int type value
   for each element e in arr, do
      increase map.key(arr).value
   done
   for each key check whether the value is more than 1, then print the key
End

範例

#include <iostream>
#include <map>
using namespace std;
void moreFreq(int arr[], int n){
   map<int, int> freq_map;
   for(int i = 0; i<n; i++){
      freq_map[arr[i]]++; //increase the frequency
   }
   for (auto it = freq_map.begin(); it != freq_map.end(); it++) {
      if (it->second > 1)
         cout << it->first << " ";
   }
}
int main() {
   int arr[] = {1, 5, 2, 5, 3, 1, 5, 2, 7};
   int n = sizeof(arr)/sizeof(arr[0]);
   cout << "Frequency more than one: ";
   moreFreq(arr, n);
}

輸出

Frequency more than one: 1 2 5

以上是出現多次的數組元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除

相關文章

看更多