当前位置:网站首页>899. 有序队列
899. 有序队列
2022-08-03 11:59:00 【anieoo】
原题链接:899. 有序队列
solution:
class Solution {
public:
string orderlyQueue(string s, int k) {
string res = s;
if(k != 1) { //k != 1可以组合成任意最小的字典序字符串
sort(s.begin(), s.end());
return s;
} else {
int n = s.size();
for(int i = 0;i < n;i++) {
s.push_back(s[0]);
s.erase(s.begin());
res = min(res, s);
}
}
return res;
}
};
边栏推荐
猜你喜欢
MySQL之json数据操作
第5章 实现首页Tab数据展示
PC client automation testing practice based on Sikuli GUI image recognition framework
【倒计时5天】探索音画质量提升背后的秘密,千元大礼等你来拿
苹果发布 AI 生成模型 GAUDI,文字生成 3D 场景
Five super handy phone open-source automation tools, which is suitable for you?
优维低代码:Provider 构件
本周四晚19:00知识赋能第4期直播丨OpenHarmony智能家居项目之设备控制实现
87.(cesium之家)cesium热力图(贴地形)
【一起学Rust 基础篇】Rust基础——变量和数据类型
随机推荐
劝退背后。
Simple implementation of a high-performance clone of Redis using .NET (1)
C language advanced article: memory function
5个超好用手机开源自动化工具,哪个适合你?
OFDM 十六讲 4 -What is a Cyclic Prefix in OFDM
一个扛住 100 亿次请求的红包系统,写得太好了!!
hystrix 服务熔断和服务降级
Five super handy phone open-source automation tools, which is suitable for you?
如图,想批量读取mysql,批量处理,有哪个地方参数需要改变呢?
ThreadLocal源码解析及使用场景
一文带你弄懂 CDN 技术的原理
word标尺有哪些作用
I in mother's womb SOLO20 years
3年软件测试经验,不懂自动化基础...不知道我这种测试人员是不是要被淘汰了?
基于SSM和Web实现的农作物生长监控系统
bash if条件判断
零拷贝、MMAP、堆外内存,傻傻搞不明白...
数据库系统原理与应用教程(075)—— MySQL 练习题:操作题 151-159(十九):综合练习
基于PHP7.2+MySQL5.7的回收租凭系统
Fastjson反序列化