LeetCode 0791. 自定义字符串排序
Posted Tisfy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 0791. 自定义字符串排序相关的知识,希望对你有一定的参考价值。
【LetMeFly】791.自定义字符串排序
力扣题目链接:https://leetcode.cn/problems/custom-sort-string/
给定两个字符串 order
和 s
。order
的所有单词都是 唯一 的,并且以前按照一些自定义的顺序排序。
对 s
的字符进行置换,使其与排序的 order
相匹配。更具体地说,如果在 order
中的字符 x
出现字符 y
之前,那么在排列后的字符串中, x
也应该出现在 y
之前。
返回 满足这个性质的 s
的任意排列 。
示例 1:
输入: order = "cba", s = "abcd" 输出: "cbad" 解释: “a”、“b”、“c”是按顺序出现的,所以“a”、“b”、“c”的顺序应该是“c”、“b”、“a”。 因为“d”不是按顺序出现的,所以它可以在返回的字符串中的任何位置。“dcba”、“cdba”、“cbda”也是有效的输出。
示例 2:
输入: order = "cbafg", s = "abcd" 输出: "cbad"
提示:
1 <= order.length <= 26
1 <= s.length <= 200
order
和s
由小写英文字母组成order
中的所有字符都 不同
方法一:自定义排序规则
o r d e r order order中未出现过的元素不需考虑,只需要给出现过的元素编个号。
使用数组 c h a r 2 t h [ 26 ] char2th[26] char2th[26]来记录26个字母的出现顺序
对于 o r d e r order order中出现过的字母,我们更新其出现位置 c h a r 2 t h char2th char2th;对于 o r d e r order order中未出现过的字母,我们无需考虑其在 c h a r 2 t h char2th char2th中的值
在排序的时候,我们以字母在 c h a r 2 t h char2th char2th中的大小为原则进行排序即可。
- 时间复杂度 O ( L 1 + L 2 log L 2 ) O(L1 + L2\\log L2) O(L1+L2logL2),其中 L 1 = l e n ( o r d e r ) , L 2 = l e n ( s ) L1 = len(order), L2 = len(s) L1=len(order),L2=len(s)
- 空间复杂度 O ( C + log L 2 ) O(C + \\log L2) O(C+logL2)
AC代码
C++
int char2th[26];
bool cmp(const char& a, const char& b)
return char2th[a - 'a'] < char2th[b - 'a'];
class Solution
private:
void init(string& order)
for (int i = order.size() - 1; i >= 0; i--)
char2th[order[i] - 'a'] = i;
public:
string customSortString(string& order, string& s)
init(order);
sort(s.begin(), s.end(), cmp);
return s;
;
同步发文于CSDN,原创不易,转载请附上原文链接哦~
Tisfy:https://letmefly.blog.csdn.net/article/details/127829276
以上是关于LeetCode 0791. 自定义字符串排序的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 937重新排列日志文件[自定义排序] HERODING的LeetCode之路
[leetcode]791. Custom Sort String自定义排序字符串