热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

按照频率降序打印数字

按照频率降序打印数字原文:https://www . geesforgeks . org/print-numbers-in-降序

按照频率降序打印数字

原文:https://www . geesforgeks . org/print-numbers-in-降序-连同它们的频率/

给定一个数组 arr ,任务是按照降序打印数组的元素及其频率。
例:

输入: arr[] = {1,3,3,3,4,4,5}
输出: 5 发生 1 次
4 发生 2 次
3 发生 3 次
1 发生 1 次
输入: arr[] = {1,1,1,2,3,4,9,10}
输出: 10 发生 1 次
9 发生 2 次【T15

简单方法:使用一些数据结构(例如多集),以降序存储元素,然后用它的计数逐个打印元素,然后从数据结构中删除它。对于所使用的数据结构,时间复杂度为 0(N 对数 N),辅助空间为 0(N)。
以下是上述方法的实现:

卡片打印处理机(Card Print Processor 的缩写)

// C++ program to print the elements in
// descending along with their frequencies
#include
using namespace std;
// Function to print the elements in descending
// along with their frequencies
void printElements(int a[], int n)
{
    // A multiset to store elements in decreasing order
    multiset > ms;
    // Insert elements in the multiset
    for (int i = 0; i         ms.insert(a[i]);
    }
    // Print the elements along with their frequencies
    while (!ms.empty()) {
        // Find the maximum element
        int maxel = *ms.begin();
        // Number of times it occurs
        int times = ms.count(maxel);
        cout <        // Erase the maxel
        ms.erase(maxel);
    }
}
// Driver Code
int main()
{
    int a[] = { 1, 1, 1, 2, 3, 4, 9, 9, 10 };
    int n = sizeof(a) / sizeof(a[0]);
    printElements(a, n);
    return 0;
}

Output: 

10 occurs 1 times
9 occurs 2 times
4 occurs 1 times
3 occurs 1 times
2 occurs 1 times
1 occurs 3 times

高效方法: 按降序排列数组,然后开始打印元素及其频率。
以下是上述方法的实施:

C++

// C++ program to print the elements in
// descending along with their frequencies
#include
using namespace std;
// Function to print the elements in descending
// along with their frequencies
void printElements(int a[], int n)
{
    // Sorts the element in decreasing order
    sort(a, a + n, greater());
    int cnt = 1;
    // traverse the array elements
    for (int i = 0; i         // Prints the number and count
        if (a[i] != a[i + 1]) {
            cout <            cnt = 1;
        }
        else
            cnt += 1;
    }
    // Prints the last step
    cout <}
// Driver Code
int main()
{
    int a[] = { 1, 1, 1, 2, 3, 4, 9, 9, 10 };
    int n = sizeof(a) / sizeof(a[0]);
    printElements(a, n);
    return 0;
}

Java 语言(一种计算机语言,尤用于创建网站)

// Java program to print the elements in
// descending along with their frequencies
import java.util.*;
class GFG
{
// Function to print the elements in descending
// along with their frequencies
static void printElements(int a[], int n)
{
    // Sorts the element in decreasing order
    Arrays.sort(a);
    a = reverse(a);
    int cnt = 1;
    // traverse the array elements
    for (int i = 0; i     {
        // Prints the number and count
        if (a[i] != a[i + 1])
        {
            System.out.print(a[i]+ " occurs " +
                            cnt + " times\n");
            cnt = 1;
        }
        else
            cnt += 1;
    }
    // Prints the last step
    System.out.print(a[n - 1]+ " occurs " +
                    cnt + " times\n");
}
static int[] reverse(int a[])
{
    int i, n = a.length, t;
    for (i = 0; i     {
        t = a[i];
        a[i] = a[n - i - 1];
        a[n - i - 1] = t;
    }
    return a;
}
// Driver Code
public static void main(String[] args)
{
    int a[] = { 1, 1, 1, 2, 3, 4, 9, 9, 10 };
    int n = a.length;
    printElements(a, n);
}
}
// This code is contributed by PrinciRaj1992

Python 3

# Python3 program to print the elements in
# descending along with their frequencies
# Function to print the elements in
# descending along with their frequencies
def printElements(a, n) :
    # Sorts the element in decreasing order
    a.sort(reverse = True)
    cnt = 1
    # traverse the array elements
    for i in range(n - 1) :
        # Prints the number and count
        if (a[i] != a[i + 1]) :
            print(a[i], " occurs ", cnt, "times")
            cnt = 1
        else :
            cnt += 1
    # Prints the last step
    print(a[n - 1], "occurs", cnt, "times")
# Driver Code
if __name__ == "__main__" :
    a = [ 1, 1, 1, 2,
          3, 4, 9, 9, 10 ]
    n = len(a)
    printElements(a, n)
# This code is contributed by Ryuga

C

// C# program to print the elements in
// descending along with their frequencies
using System;
class GFG
{
// Function to print the elements in descending
// along with their frequencies
static void printElements(int []a, int n)
{
    // Sorts the element in decreasing order
    Array.Sort(a);
    a = reverse(a);
    int cnt = 1;
    // traverse the array elements
    for (int i = 0; i     {
        // Prints the number and count
        if (a[i] != a[i + 1])
        {
            Console.Write(a[i]+ " occurs " +
                            cnt + " times\n");
            cnt = 1;
        }
        else
            cnt += 1;
    }
    // Prints the last step
    Console.Write(a[n - 1]+ " occurs " +
                    cnt + " times\n");
}
static int[] reverse(int []a)
{
    int i, n = a.Length, t;
    for (i = 0; i     {
        t = a[i];
        a[i] = a[n - i - 1];
        a[n - i - 1] = t;
    }
    return a;
}
// Driver Code
public static void Main(String[] args)
{
    int []a = { 1, 1, 1, 2, 3, 4, 9, 9, 10 };
    int n = a.Length;
    printElements(a, n);
}
}
// This code is contributed by PrinciRaj1992

服务器端编程语言(Professional Hypertext Preprocessor 的缩写)

// PHP program to print the elements in
// descending along with their frequencies
// Function to print the elements in
// descending along with their frequencies
function printElements(&$a, $n)
{
    // Sorts the element in
    // decreasing order
    rsort($a);
    $cnt = 1;
    // traverse the array elements
    for ($i = 0; $i <$n - 1; $i++)
    {
        // Prints the number and count
        if ($a[$i] != $a[$i + 1])
        {
            echo ($a[$i]);
            echo (" occurs " );
            echo $cnt ;
            echo (" times\n");
            $cnt = 1;
        }
        else
            $cnt += 1;
    }
    // Prints the last step
    echo ($a[$n - 1]);
    echo (" occurs ");
    echo $cnt;
    echo (" times\n");
}
// Driver Code
$a = array(1, 1, 1, 2, 3,
           4, 9, 9, 10 );
$n = sizeof($a);
printElements($a, $n);
// This code is contributed
// by Shivi_Aggarwal
?>

java 描述语言


Output: 

10 occurs 1 times
9 occurs 2 times
4 occurs 1 times
3 occurs 1 times
2 occurs 1 times
1 occurs 3 times

推荐阅读
  • 本文探讨了如何在给定整数N的情况下,找到两个不同的整数a和b,使得它们的和最大,并且满足特定的数学条件。 ... [详细]
  • 深入了解 Windows 窗体中的 SplitContainer 控件
    SplitContainer 控件是 Windows 窗体中的一种复合控件,由两个可调整大小的面板和一个可移动的拆分条组成。本文将详细介绍其功能、属性以及如何通过编程方式创建复杂的用户界面。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • C++实现经典排序算法
    本文详细介绍了七种经典的排序算法及其性能分析。每种算法的平均、最坏和最好情况的时间复杂度、辅助空间需求以及稳定性都被列出,帮助读者全面了解这些排序方法的特点。 ... [详细]
  • 本文详细介绍了 Dockerfile 的编写方法及其在网络配置中的应用,涵盖基础指令、镜像构建与发布流程,并深入探讨了 Docker 的默认网络、容器互联及自定义网络的实现。 ... [详细]
  • 本文介绍了如何通过 Maven 依赖引入 SQLiteJDBC 和 HikariCP 包,从而在 Java 应用中高效地连接和操作 SQLite 数据库。文章提供了详细的代码示例,并解释了每个步骤的实现细节。 ... [详细]
  • MySQL索引详解与优化
    本文深入探讨了MySQL中的索引机制,包括索引的基本概念、优势与劣势、分类及其实现原理,并详细介绍了索引的使用场景和优化技巧。通过具体示例,帮助读者更好地理解和应用索引以提升数据库性能。 ... [详细]
  • 本文详细介绍如何在VSCode中配置自定义代码片段,使其具备与IDEA相似的代码生成快捷键功能。通过具体的Java和HTML代码片段示例,展示配置步骤及效果。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • Java 中 Writer flush()方法,示例 ... [详细]
  • 数据库内核开发入门 | 搭建研发环境的初步指南
    本课程将带你从零开始,逐步掌握数据库内核开发的基础知识和实践技能,重点介绍如何搭建OceanBase的开发环境。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文探讨了如何在模运算下高效计算组合数C(n, m),并详细介绍了乘法逆元的应用。通过扩展欧几里得算法求解乘法逆元,从而实现除法取余的计算。 ... [详细]
  • Splay Tree 区间操作优化
    本文详细介绍了使用Splay Tree进行区间操作的实现方法,包括插入、删除、修改、翻转和求和等操作。通过这些操作,可以高效地处理动态序列问题,并且代码实现具有一定的挑战性,有助于编程能力的提升。 ... [详细]
author-avatar
驰诗勋
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有