将句子排序(1859)
一个 句子 指的是一个序列的单词用单个空格连接起来,且开头和结尾没有任何空格。每个单词都只包含小写或大写英文字母。
我们可以给一个句子添加 从 1 开始的单词位置索引 ,并且将句子中所有单词 打乱顺序 。
比方说,句子 “This is a sentence” 可以被打乱顺序得到 “sentence4 a3 is2 This1” 或者 “is2 sentence4 This1 a3” 。
给你一个 打乱顺序 的句子 s ,它包含的单词不超过 9 个,请你重新构造并得到原本顺序的句子。示例 1:
输入:s = “is2 sentence4 This1 a3”
输出:“This is a sentence”
解释:将 s 中的单词按照初始位置排序,得到 “This1 is2 a3 sentence4” ,然后删除数字。
示例 2:输入:s = “Myself2 Me1 I4 and3”
输出:“Me Myself and I”
解释:将 s 中的单词按照初始位置排序,得到 “Me1 Myself2 and3 I4” ,然后删除数字。
public class LC213_1859_sortSentence {
//排序-字符串处理public static String sortSentence(String s) {
String[] split = s.split(" ");String[] result = new String[split.length];for (String value : split) {
int length = value.length();int anInt = Integer.parseInt(value.substring(length - 1, length));result[anInt - 1] = value.substring(0, length - 1);}return String.join(" ", result);}public static void main(String[] args) {
String s = "is2 sentence4 This1 a3";System.out.println(sortSentence(s));}
}