📌  相关文章
📜  按频率对元素进行排序|第4组(使用哈希的有效方法)

📅  最后修改于: 2021-05-04 19:48:47             🧑  作者: Mango

如果2个数字具有相同的频率,则以递减的频率打印数组的元素,然后打印第一个出现的频率。
例子:

Input : arr[] = {2, 5, 2, 8, 5, 6, 8, 8}
Output : arr[] = {8, 8, 8, 2, 2, 5, 5, 6}

Input : arr[] = {2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8}
Output : arr[] = {8, 8, 8, 2, 2, 5, 5, 6, -1, 9999999}
 

我们在以下帖子中讨论了不同的方法:
按频率对元素进行排序|套装1
按频率对元素进行排序|套装2
按频率对数组元素进行排序|设置3(使用STL)
以上所有方法均在O(n Log n)时间内工作,其中n是元素总数。在这篇文章中,讨论了一种新方法,该方法可在O(n + m Log m)的时间内工作,其中n是元素总数,m是不同元素的总数。
这个想法是使用哈希。

  1. 我们将所有元素及其计数插入到哈希中。此步骤花费O(n)时间,其中n是元素数。
  2. 我们将哈希的内容复制到数组(或向量)中,并按计数对它们进行排序。此步骤花费O(m Log m)时间,其中m是不同元素的总数。
  3. 为了在频率相同的情况下保持元素的顺序,我们使用另一个散列,该散列的键为数组的元素,而值为索引。如果两个元素的频率相同,则根据索引对元素进行排序。

下图是上述方法的模拟:

我们不需要声明另一个映射m2,因为它没有为问题提供适当的预期结果。

相反,我们只需要检查sortByVal函数作为参数发送的对的第一个值即可。

下面是上述方法的实现:

C++
//     CPP program for the above approach
#include 
using namespace std;
 
// Used for sorting by frequency. And if frequency is same,
// then by appearance
bool sortByVal(const pair& a,
                      const pair& b)
{
 
   // If frequency is same then sort by index
   if (a.second == b.second) 
       return a.first < b.first;
 
   return a.second > b.second;
}
 
// function to sort elements by frequency
vectorsortByFreq(int a[], int n)
{
 
   vectorres;
 
   unordered_map m;
 
   vector > v;
 
   for (int i = 0; i < n; ++i) {
 
       // Map m is used to keep track of count 
       // of elements in array
       m[a[i]]++;     
   }
 
   // Copy map to vector
   copy(m.begin(), m.end(), back_inserter(v));
 
   // Sort the element of array by frequency
   sort(v.begin(), v.end(), sortByVal);
 
   for (int i = 0; i < v.size(); ++i) 
      while(v[i].second--)
      {
              res.push_back(v[i].first);
      }
 
   return res;
}
 
// Driver program
int main()
{
 
   int a[] = { 2, 5, 2, 6, -1, 9999999, 5, 8, 8, 8 };
   int n = sizeof(a) / sizeof(a[0]);
   vectorres;
   res = sortByFreq(a, n);
 
   for(int i = 0;i < res.size(); i++)
         cout<


输出:

8 8 8 2 2 5 5 6 -1 9999999