摘要:反轉字符法復雜度時間空間思路因為數字不好從前向后遍歷每一位要先統計一共有多少位,比較麻煩,所以我們直接從后向前計數,最后把結果倒置就行了。
Count Consecutive Digits in Integer
反轉字符法 復雜度Count consecutive digits and say it. For example, return 132341 if input is 1112224. There are three 1s, three 2s and one 4.
時間 O(N) 空間 O(1)
思路因為數字不好從前向后遍歷每一位(要先統計一共有多少位,比較麻煩),所以我們直接從后向前計數,最后把結果倒置就行了。
注意退出循環后還要額外執行一次append,將最后的連續數字補齊
代碼public String countAndSay(int n) { if(n <= 0) return ""; int last = n % 10, cnt = 1; n = n / 10; StringBuilder sb = new StringBuilder(); while(n > 0){ int digit = n % 10; if(digit == last){ cnt++; } else { sb.append(cnt); sb.append(last); cnt = 1; last = digit; } n = n / 10; } sb.append(cnt); sb.append(last); sb.reverse(); return sb.toString(); }Count and Say
遞歸法 復雜度The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ...
1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read off as "one 2, then one 1" or 1211. Given an integer n, generate the nth sequence.
Note: The sequence of integers will be represented as a string.
時間 O(N) 空間 O(N) 遞歸棧空間
思路因為第n個數count and say的結果是基于第n-1個數的,我們可以用遞歸解決這個問題。
代碼public class Solution { public String countAndSay(int n) { if(n == 0){ return ""; } if(n == 1){ return "1"; } String s = countAndSay(n-1); char last = s.charAt(0); int cnt = 1; StringBuilder sb = new StringBuilder(); for(int i = 1; i < s.length(); i++){ if(s.charAt(i)==last){ cnt++; } else { sb.append(cnt); sb.append(last); cnt = 1; last = s.charAt(i); } } sb.append(cnt); sb.append(last); return sb.toString(); } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/64517.html
摘要:遞歸解法復雜度時間空間遞歸棧思路該序列又叫做外觀序列,無論如何我們都得將前一個序列元素算出來,才能計算后一個序列元素。當遞歸至的時候返回初始數字。另外,比如初始數字,第一次變成了,我們可以發現大于的數都只會一個一個出現了。 Count And Say The count-and-say sequence is the sequence of integers beginning as...
摘要:題目要求英文的題目有點繞口,所以去網上找了一下題目的意思。題目的核心邏輯在于將口語化的數數字轉化為字符串。 題目要求 The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as one 1 or 11...
摘要:在線網站地址我的微信公眾號完整題目列表從年月日起,每天更新一題,順序從易到難,目前已更新個題。這是項目地址歡迎一起交流學習。 這篇文章記錄我練習的 LeetCode 題目,語言 JavaScript。 在線網站:https://cattle.w3fun.com GitHub 地址:https://github.com/swpuLeo/ca...我的微信公眾號: showImg(htt...
摘要:微信公眾號記錄截圖記錄截圖目前關于這塊算法與數據結構的安排前。已攻略返回目錄目前已攻略篇文章。會根據題解以及留言內容,進行補充,并添加上提供題解的小伙伴的昵稱和地址。本許可協議授權之外的使用權限可以從處獲得。 Create by jsliang on 2019-07-15 11:54:45 Recently revised in 2019-07-15 15:25:25 一 目錄 不...
摘要:而讀起來是兩個,所以第三個字符串就應當是。同理第四個字符串是一個一個,因此是。依次類推而我們的目的是,對于輸入的正整數,我們要給出第個字符串是什么。這里采用了是為了減少內存的開銷。解法設置初始字符串將重新賦值當前字符字符計數 題目詳情 The count-and-say sequence is the sequence of integers with the first five t...
閱讀 1840·2021-09-22 15:55
閱讀 3527·2021-09-07 10:26
閱讀 634·2019-08-30 15:54
閱讀 690·2019-08-29 16:34
閱讀 844·2019-08-26 14:04
閱讀 3267·2019-08-26 11:47
閱讀 2139·2019-08-26 11:33
閱讀 2300·2019-08-23 15:17