在C ++中,元素在排序数组中的出现率超过25%

假设我们有一个数组A。元素很少。一些元素很常见。我们必须返回一个在数组中出现25%以上空格的元素。因此,如果A = [1、2、4、4、4、4、5、5、6、6、7、7],则这里4出现了四次。这是12(阵列大小)的25%以上

为了解决这个问题,我们将遵循以下步骤-

  • 读取元素并存储其各自的频率

  • 如果频率大于数组大小的25%,则返回结果。

示例

让我们看下面的实现以更好地理解-

#include <bits/stdc++.h>
using namespace std;
class Solution {
   public:
      int findSpecialInteger(vector<int>& arr) {
         int n = arr.size();
         int req = n / 4;
         unordered_map <int, int> m;
         int ans = -1;
         for(int i = 0; i < n; i++){
            m[arr[i]]++;
            if(m[arr[i]] > req)ans = arr[i];
         }
         return ans;
      }
};
main(){
   Solution ob;
   vector<int> c = {1,2,4,4,4,4,5,5,6,6,7,7};
   cout << ob.findSpecialInteger(c);
}

输入值

[1,2,4,4,4,4,5,5,6,6,7,7]

输出结果

4