跳至主要內容

1859. 将句子排序


1859. 将句子排序

🟢   🔖  字符串 排序  🔗 力扣open in new window LeetCodeopen in new window

题目

A sentence is a list of words that are separated by a single space with no leading or trailing spaces. Each word consists of lowercase and uppercase English letters.

A sentence can be shuffled by appending the 1-indexed word position to each word then rearranging the words in the sentence.

  • For example, the sentence "This is a sentence" can be shuffled as "sentence4 a3 is2 This1" or "is2 sentence4 This1 a3".

Given a shuffled sentence s containing no more than 9 words, reconstruct and return the original sentence.

Example 1:

Input: s = "is2 sentence4 This1 a3"

Output: "This is a sentence"

Explanation: Sort the words in s to their original positions "This1 is2 a3 sentence4", then remove the numbers.

Example 2:

Input: s = "Myself2 Me1 I4 and3"

Output: "Me Myself and I"

Explanation: Sort the words in s to their original positions "Me1 Myself2 and3 I4", then remove the numbers.

Constraints:

  • 2 <= s.length <= 200
  • s consists of lowercase and uppercase English letters, spaces, and digits from 1 to 9.
  • The number of words in s is between 1 and 9.
  • The words in s are separated by a single space.
  • s contains no leading or trailing spaces.

题目大意

一个 句子 指的是一个序列的单词用单个空格连接起来,且开头和结尾没有任何空格。每个单词都只包含小写或大写英文字母。

我们可以给一个句子添加 从 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" ,然后删除数字。

提示:

  • 2 <= s.length <= 200
  • s 只包含小写和大写英文字母、空格以及从 19 的数字。
  • s 中单词数目为 19 个。
  • s 中的单词由单个空格分隔。
  • s 不包含任何前导或者后缀空格。

解题思路

  1. 拆分单词

    • 首先使用 split(' ') 方法将句子拆分成单个单词,words 数组会包含所有的单词,每个单词的最后一个字符表示该单词的位置。
  2. 确定单词位置并填充

    • 对于每个单词,获取其末尾的数字(即该单词应当出现的位置)。通过 charAt(word.length - 1) 获取最后一个字符,并将其转换为数字。然后,将这个数字减 1,得到正确的索引位置。
    • 将该单词(去掉末尾数字)放入 res 数组的正确位置。
  3. 拼接并返回结果

    • 将处理后的单词数组通过空格拼接起来,返回结果字符串。

复杂度分析

  • 时间复杂度O(n),其中 n 是字符串 s 的长度,拆分字符串需要遍历字符串。
  • 空间复杂度O(m),其中 m 是单词的个数,存储单词的 words 数组和res 数组的空间。

代码

/**
 * @param {string} s
 * @return {string}
 */
var sortSentence = function (s) {
	const words = s.split(' ');
	let res = [];

	for (const word of words) {
		const position = Number(word.charAt(word.length - 1)) - 1;
		res[position] = word.slice(0, -1);
	}

	return res.join(' ');
};

相关题目

题号标题题解标签难度力扣
2042检查句子中的数字是否递增[✓]字符串🟢🀄️open in new window 🔗open in new window