Python 解LeetCode:394 Decode String

來源:互聯網
上載者:User

標籤:tchar   isa   break   append   tmp   儲存   組合   pre   com   

  • 題目描述:按照規定,把字串解碼,具體樣本見題目連結

  • 思路:使用兩個棧分別儲存數字和字母
  • 注意1: 數字是多位的話,要處理後入數字棧
  • 注意2: 出棧時過程中產生的組合後的字串要繼續入字母棧
  • 注意3: 記得字母出棧的時候字元要逆序組合成字串
  • 注意4: 不用字串而用字母棧的原因是字串的 join 效率會比字串加法高一些

  • 結果: 30 ms, beat 98.02%

  • 缺點:判斷是數字那裡有點代碼不簡潔,可以把 j 挪到迴圈外面的

class Solution(object):    def decodeString(self, s):        """        :type s: str        :rtype: str        """        nums, chars = [], []        i, length = 0, len(s)        while i < length:            j = i + 1            if s[i].isdigit():                num = int(s[i])                while j < length:                    if s[j].isdigit():                        num = num * 10 + int(s[j])                        j += 1                    else:                        break                nums.append(num)            elif s[i] == ‘[‘ or s[i].isalpha():                chars.append(s[i])            else:                t, tmpc = chars.pop(), []                while t != ‘[‘:                    tmpc.append(t)                    t = chars.pop()                tchars = nums.pop() * ‘‘.join(tmpc[::-1])                chars.append(tchars)            i = j        return ‘‘.join(chars)

Python 解LeetCode:394 Decode String

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.