返回介绍

solution / 1800-1899 / 1859.Sorting the Sentence / README

发布于 2024-06-17 01:03:13 字数 4161 浏览 0 评论 0 收藏 0

1859. 将句子排序

English Version

题目描述

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

我们可以给一个句子添加 从 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 只包含小写和大写英文字母、空格以及从 1 到 9 的数字。
  • s 中单词数目为 1 到 9 个。
  • s 中的单词由单个空格分隔。
  • s 不包含任何前导或者后缀空格。

解法

方法一:字符串分割

我们先将字符串 $s$ 按照空格分割,得到字符串数组 $words$。然后,我们创建一个长度为 $|words|$ 的字符串数组 $ans$,用于存放答案。

接下来,遍历字符串数组 $words$ 中的每个字符串 $w$,找到 $w$ 的最后一个字符表示的位置 $i$,然后将 $w$ 的前 $|w|-1$ 个字符作为新的字符串 $w'$,将 $w'$ 放在数组 $ans$ 的第 $i$ 个位置。

最后,将数组 $ans$ 按照空格连接成字符串,即为答案。

时间复杂度 $O(n)$,空间复杂度 $O(n)$。其中 $n$ 是字符串 $s$ 的长度。

class Solution:
  def sortSentence(self, s: str) -> str:
    ws = [(w[:-1], int(w[-1])) for w in s.split()]
    ws.sort(key=lambda x: x[1])
    return ' '.join(w for w, _ in ws)
class Solution {
  public String sortSentence(String s) {
    String[] ws = s.split(" ");
    int n = ws.length;
    String[] ans = new String[n];
    for (int i = 0; i < n; ++i) {
      String w = ws[i];
      ans[w.charAt(w.length() - 1) - '1'] = w.substring(0, w.length() - 1);
    }
    return String.join(" ", ans);
  }
}
class Solution {
public:
  string sortSentence(string s) {
    istringstream iss(s);
    string w;
    vector<string> ws;
    while (iss >> w) {
      ws.push_back(w);
    }
    vector<string> ss(ws.size());
    for (auto& w : ws) {
      ss[w.back() - '1'] = w.substr(0, w.size() - 1);
    }
    string ans;
    for (auto& w : ss) {
      ans += w + " ";
    }
    ans.pop_back();
    return ans;
  }
};
func sortSentence(s string) string {
  ws := strings.Split(s, " ")
  ans := make([]string, len(ws))
  for _, w := range ws {
    ans[w[len(w)-1]-'1'] = w[:len(w)-1]
  }
  return strings.Join(ans, " ")
}
function sortSentence(s: string): string {
  const ws = s.split(' ');
  const ans = Array(ws.length);
  for (const w of ws) {
    ans[w.charCodeAt(w.length - 1) - '1'.charCodeAt(0)] = w.slice(0, -1);
  }
  return ans.join(' ');
}
/**
 * @param {string} s
 * @return {string}
 */
var sortSentence = function (s) {
  const ws = s.split(' ');
  const ans = Array(ws.length);
  for (const w of ws) {
    ans[w.charCodeAt(w.length - 1) - '1'.charCodeAt(0)] = w.slice(0, -1);
  }
  return ans.join(' ');
};

方法二

class Solution:
  def sortSentence(self, s: str) -> str:
    ws = s.split()
    ans = [None] * len(ws)
    for w in ws:
      ans[int(w[-1]) - 1] = w[:-1]
    return ' '.join(ans)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文