여기서 문제가 발생합니다. 배열이 있습니다. 우리의 임무는 빈도가 1보다 큰 요소를 찾는 것입니다. 요소가 {1, 5, 2, 5, 3, 1, 5, 2, 7}이라고 가정합니다. 여기서 1은 2번 나타나고, 5는 3번 나타나고, 2는 3번 나타나고, 나머지는 한 번만 나타납니다. 따라서 출력은 {1, 5, 2}
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!