国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

[Leetcode] Reverse Words in a String 反轉單詞順序

codeKK / 2301人閱讀

摘要:代碼先反轉整個數組反轉每個單詞雙指針交換法復雜度時間空間思路這題就是版的做法了,先反轉整個數組,再對每個詞反轉。

Reverse Words in a String

Given an input string, reverse the string word by word.

For example, Given s = "the sky is blue", return "blue is sky the".

Update (2015-02-12): For C programmers: Try to solve it in-place in O(1) space

使用API 復雜度

時間 O(N) 空間 O(N)

思路

將單詞根據空格split開來存入一個字符串數組,然后將該數組反轉即可。

注意

先用trim()將前后無用的空格去掉

用正則表達式" +"來匹配一個或多個空格

代碼
public class Solution {
    public String reverseWords(String s) {
        String[] words = s.trim().split(" +");
        int len = words.length;
        StringBuilder result = new StringBuilder();
        for(int i = len -1; i>=0;i--){
            result.append(words[i]);
            if(i!=0) result.append(" ");
        }
        return result.toString();
    }
}
雙指針交換法 復雜度

時間 O(N) 空間 O(N) 如果輸入時char數組則是O(1)

思路

先將字符串轉換成char的數組,然后將整個數組反轉。然后我們再對每一個單詞多帶帶的反轉一次,方法是用兩個指針記錄當前單詞的起始位置和終止位置,遇到空格就進入下一個單詞。

代碼
public class Solution {
    public String reverseWords(String s) {
        s = s.trim();
        char[] str = s.toCharArray();
        // 先反轉整個數組
        reverse(str, 0, str.length - 1);
        int start = 0, end = 0;
        for(int i = 0; i < s.length(); i++){
            if(str[i]!=" "){
                end++;
            } else {
                // 反轉每個單詞
                reverse(str, start, end - 1);
                end++;
                start = end;
            }
        }
        return String.valueOf(str);
    }
    
    public void reverse(char[] str, int start, int end){
        while(start < end){
            char tmp = str[start];
            str[start] = str[end];
            str[end] = tmp;
            start++;
            end--;
        }
    }
}
Reverse Words in a String II

Given an input string, reverse the string word by word. A word is defined as a sequence of non-space characters.

The input string does not contain leading or trailing spaces and the words are always separated by a single space.

For example, Given s = "the sky is blue", return "blue is sky the".
Could you do it in-place without allocating extra space?

雙指針交換法 復雜度

時間 O(N) 空間 O(1)

思路

這題就是Java版的Inplace做法了,先反轉整個數組,再對每個詞反轉。

代碼
public class Solution {
    public void reverseWords(char[] s) {
        reverse(s, 0, s.length - 1);
        int start = 0;
        for(int i = 0; i < s.length; i++){
            if(s[i] == " "){
                reverse(s, start, i - 1);
                start = i + 1;
            }
        }
        reverse(s, start, s.length - 1);
    }
    
    public void reverse(char[] s, int start, int end){
        while(start < end){
            char tmp = s[start];
            s[start] = s[end];
            s[end] = tmp;
            start++;
            end--;
        }
    }
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/64538.html

相關文章

  • LeetCode 557:反轉字符串中的單詞 III Reverse Words in a Str

    摘要:公眾號愛寫給定一個字符串,你需要反轉字符串中每個單詞的字符順序,同時仍保留空格和單詞的初始順序。示例輸入輸出注意在字符串中,每個單詞由單個空格分隔,并且字符串中不會有任何額外的空格。 公眾號:愛寫bug(ID:icodebugs) 給定一個字符串,你需要反轉字符串中每個單詞的字符順序,同時仍保留空格和單詞的初始順序。 Given a string, you need to revers...

    CrazyCodes 評論0 收藏0
  • LeetCode 557:反轉字符串中的單詞 III Reverse Words in a Str

    摘要:公眾號愛寫給定一個字符串,你需要反轉字符串中每個單詞的字符順序,同時仍保留空格和單詞的初始順序。示例輸入輸出注意在字符串中,每個單詞由單個空格分隔,并且字符串中不會有任何額外的空格。 公眾號:愛寫bug(ID:icodebugs) 給定一個字符串,你需要反轉字符串中每個單詞的字符順序,同時仍保留空格和單詞的初始順序。 Given a string, you need to revers...

    Zachary 評論0 收藏0
  • LeetCode 之 JavaScript 解答第151題 —— 反轉字符串中的單詞

    摘要:小鹿題目翻轉字符串里的單詞給定一個字符串,逐個翻轉字符串中的每個單詞。說明無空格字符構成一個單詞。遇到空格之后,將單詞進行倒序拼接。消除尾部的空格。測試用例空字符串。中間空格大于的字符串。 Time:2019/4/20Title: Reverse Words In a StringDifficulty: MidumnAuthor: 小鹿 題目:Reverse Words In a ...

    betacat 評論0 收藏0
  • LeetCode 151:給定一個字符串,逐個翻轉字符串中的每個單詞 Reverse Words i

    摘要:說明無空格字符構成一個單詞。輸入字符串可以在前面或者后面包含多余的空格,但是反轉后的字符不能包括。我們將字符串轉為字符型數組并用兩個指針來解這道題。指針作為原字符串轉為字符數組的索引,從右向左移。 公眾號:愛寫bug(ID:icodebugs) 翻轉字符串里的單詞 Given an input string, reverse the string word by word. 示例 1:...

    red_bricks 評論0 收藏0
  • LeetCode 151:給定一個字符串,逐個翻轉字符串中的每個單詞 Reverse Words i

    摘要:說明無空格字符構成一個單詞。輸入字符串可以在前面或者后面包含多余的空格,但是反轉后的字符不能包括。我們將字符串轉為字符型數組并用兩個指針來解這道題。指針作為原字符串轉為字符數組的索引,從右向左移。 公眾號:愛寫bug(ID:icodebugs) 翻轉字符串里的單詞 Given an input string, reverse the string word by word. 示例 1:...

    dongxiawu 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<