2024-02-29|閱讀時間 ‧ 約 0 分鐘

反轉所有的單字 Reverse Words in a String_Leetcode 精選75題解析

題目敘述

題目會給我們一個字串s作為輸入,要求我們以white space空白為切割符號,切割出每個單字,並且反轉其順序後,以字串形式最為最後的輸出。

題目的原文敘述


測試範例

Example 1:

Input: s = "the sky is blue"
Output: "blue is sky the"
Example 2:

Input: s = " hello world "
Output: "world hello"
Explanation: Your reversed string should not contain leading or trailing spaces.
Example 3:

Input: s = "a good example"
Output: "example good a"
Explanation: You need to reduce multiple spaces between two words to a single space in the reversed string.

約束條件

Constraints:

  • 1 <= s.length <= 10^4

字串s的長度介於1~10^4之間

  • s contains English letters (upper-case and lower-case), digits, and spaces ' '.

字串s只會包含(大寫、小寫)英文字母,數字,和空白

  • There is at least one word in s.

字串s裡面至少包含一個單字。


演算法

這題的考點主要在於字串操作的熟悉度。

有不種一只解法。

這邊我們採用內建的字串函數與python slicing 切片語法,作為示範。

首先用s.split(),用空白字元切割出每一個單字。

接下來,用[::-1]反轉單字的出現順序。

最後,用" ".join合併每個單字,倆倆單字中間用一個空白作為間隔,最後以字串的形式輸出答案。


程式碼

class Solution:
def reverseWords(self, s: str) -> str:

# Parse each token by whitespace, and reverse order
tokens = s.split()[::-1]

# Combine with each token, separated by one whitespace
return " ".join( tokens )

額外補充,Python 官方文件關於 str.split() 函式的介紹,在切割有規律的字串時,很實用的內建function。


分享至
成為作者繼續創作的動力吧!
從 Google News 追蹤更多 vocus 的最新精選內容從 Google News 追蹤更多 vocus 的最新精選內容

作者的相關文章

小松鼠的演算法樂園 的其他內容

你可能也想看

發表回應

成為會員 後即可發表留言
© 2024 vocus All rights reserved.