【华为OD机试真题】字符串重新排序
题目描述
给定一个字符串s,s包括以空格分隔的若干个单词,请对s进行如下处理后输出:
1、单词内部调整:对每个单词字母重新按字典序排序
2、单词间顺序调整:
1)统计每个单词出现的次数,并按次数降序排列
2)次数相同,按单词长度升序排列
3)次数和单词长度均相同,按字典升序排列
请输出处理后的字符串,每个单词以一个空格分隔。
输入描述
一行字符串,每个字符取值范围:[a-zA-z0-9]以及空格,字符串长度范围:[1,1000]
输出描述
输出处理后的字符串,每个单词以一个空格分隔。
测试样例1
输入
This is an apple
输出
an is This aelpp
测试样例2
输入
My sister is in the house not in the yard
输出
in in eht eht My is not adry ehosu eirsst
Python代码解析
from collections import Counter
def process_string(s):
# 分割字符串为单词列表
words = s.split()
# 对每个单词进行排序
sorted_words = [''.join(sorted(word)) for word in words]
# 统计每个单词出现的次数
word_counts = Counter(sorted_words)
# 根据次数、长度和字典序排序单词
sorted_word_counts = sorted(word_counts.items(), key=lambda x: (-x[1], len(x[0]), x[0]))
# 构建输出字符串
result = ' '.join(word[0] for word in sorted_word_counts for _ in range(word[1]))
return result
# 测试样例1
input1 = "This is an apple"
print(process_string(input1))
# 测试样例2
input2 = "My sister is in the house not in the yard"
print(process_string(input2))
#华为OD##华为OD机考##华为OD机试真题##华为OD题库##华为OD机试算法题库#