博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
STL之priority_queue
阅读量:5247 次
发布时间:2019-06-14

本文共 734 字,大约阅读时间需要 2 分钟。

描述

使用STL中的优先队列,将一个字符串中的各个字符按照ASCII从大到小顺序排列。

部分代码已经给出,请补充完整,提交时请勿包含已经给出的代码。

 

int main(){    priority_queue
qu; int n; cin>>n; while(n--) { Input(qu); while(!qu.empty()) { cout<

输入

输入数据有多组,第一行为n,接下来有n组,每组一个字符串(不含空格)。

输出

每组一行,输出一个字符串,字符串中的各个字符按照ASCII从大到小顺序排列。

样例输入

 2

aed
abcdefg

样例输出

 eda

gfedcba

#include 
#include
#include
#include
using namespace std;void Input(priority_queue
&qu){ string ss; cin>>ss; for(int i=0;i
qu; int n; cin>>n; while(n--) { Input(qu); while(!qu.empty()) { cout<

 

 

转载于:https://www.cnblogs.com/baobao2201128470/p/8722184.html

你可能感兴趣的文章
ASP.NET使网页弹出窗口不再困难
查看>>
Leetcode Balanced Binary Tree
查看>>
Leetcode 92. Reverse Linked List II
查看>>
windown快速安装xgboost
查看>>
Linux上安装Libssh2
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
在Ubuntu下配置Apache多域名服务器
查看>>
多线程《三》进程与线程的区别
查看>>
linux sed命令
查看>>
LeetCode 160. Intersection of Two Linked Lists
查看>>
html标签的嵌套规则
查看>>
[Source] Machine Learning Gathering/Surveys
查看>>
HTML <select> 标签
查看>>