摘要:比如,先判斷和是有映射的,然后和自己又是映射,所以是對稱數。這樣每次從中間插入兩個對稱的字符,之前插入的就被擠到兩邊去了。只插入一個字符時不能插入和插入字符和它的對應字符
Strobogrammatic Number I
雙指針法 復雜度A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).
Write a function to determine if a number is strobogrammatic. The number is represented as a string.
For example, the numbers "69", "88", and "818" are all strobogrammatic.
時間 O(N) 空間 O(1)
思路翻轉后對稱的數就那么幾個,我們可以根據這個建立一個映射關系:8->8, 0->0, 1->1, 6->9, 9->6,然后從兩邊向中間檢查對應位置的兩個字母是否有映射關系就行了。比如619,先判斷6和9是有映射的,然后1和自己又是映射,所以是對稱數。
注意while循環的條件是left<=right
代碼public class Solution { public boolean isStrobogrammatic(String num) { HashMapStrobogrammatic Number IImap = new HashMap (); map.put("1","1"); map.put("0","0"); map.put("6","9"); map.put("9","6"); map.put("8","8"); int left = 0, right = num.length() - 1; while(left <= right){ // 如果字母不存在映射或映射不對,則返回假 if(!map.containsKey(num.charAt(right)) || num.charAt(left) != map.get(num.charAt(right))){ return false; } left++; right--; } return true; } }
中間插入法 復雜度A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).
Find all strobogrammatic numbers that are of length = n.
For example, Given n = 2, return ["11","69","88","96"].
時間 O(N) 空間 O(1)
思路找出所有的可能,必然是深度優先搜索。但是每輪搜索如何建立臨時的字符串呢?因為數是“對稱”的,我們插入一個字母就知道對應位置的另一個字母是什么,所以我們可以從中間插入來建立這個臨時的字符串。這樣每次從中間插入兩個“對稱”的字符,之前插入的就被擠到兩邊去了。這里有幾個邊界條件要考慮:
如果是第一個字符,即臨時字符串為空時進行插入時,不能插入"0",因為沒有0開頭的數字
如果n=1的話,第一個字符則可以是"0"
如果只剩下一個帶插入的字符,這時候不能插入"6"或"9",因為他們不能和自己產生映射,翻轉后就不是自己了
這樣,當深度優先搜索時遇到這些情況,則要相應的跳過
注意為了實現從中間插入,我們用StringBuilder在length/2的位置insert就行了
代碼public class Solution { char[] table = {"0", "1", "8", "6", "9"}; Listres; public List findStrobogrammatic(int n) { res = new ArrayList (); build(n, ""); return res; } public void build(int n, String tmp){ if(n == tmp.length()){ res.add(tmp); return; } boolean last = n - tmp.length() == 1; for(int i = 0; i < table.length; i++){ char c = table[i]; // 第一個字符不能為"0",但n=1除外。只插入一個字符時不能插入"6"和"9" if((n != 1 && tmp.length() == 0 && c == "0") || (last && (c == "6" || c == "9"))){ continue; } StringBuilder newTmp = new StringBuilder(tmp); // 插入字符c和它的對應字符 append(last, c, newTmp); build(n, newTmp.toString()); } } public void append(boolean last, char c, StringBuilder sb){ if(c == "6"){ sb.insert(sb.length()/2, "69"); } else if(c == "9"){ sb.insert(sb.length()/2, "96"); } else { sb.insert(sb.length()/2, last ? c : ""+c+c); } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/64565.html
Problem A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down). Write a function to determine if a number is strobogrammatic. The number is represent...
Problem A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down). Find all strobogrammatic numbers that are of length = n. Example: Input: n = 2Output...
Problem A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down). Write a function to count the total strobogrammatic numbers that exist in the range o...
摘要:所以這題先建立一個對應的,然后掃一遍字符串就可以了。復雜度分析第二題題目內容解決思路一看關鍵詞,通常都是,深搜一遍,挖地三尺,雁過拔毛。復雜度分析第三題題目內容解決思路復雜度分析 該系列共三道題,Company Tag只有一個Google,那就必須要做了。 第一題題目內容 A strobogrammatic number is a number that looks the same ...
摘要:題目解答題目解答先考慮最底層的兩種情況,當和當的時候,就是最中間的數為空還是存在唯一的一個數。然后我們在這個基礎上,用循環兩個數兩個數地一起向外擴張。擴張后的結果存在里,作為再服務于上一層的擴張,得到最終結果。 246.Strobogrammatic NumberI題目:A strobogrammatic number is a number that looks the same w...
閱讀 1216·2021-11-22 12:05
閱讀 1343·2021-09-29 09:35
閱讀 640·2019-08-30 15:55
閱讀 3133·2019-08-30 14:12
閱讀 960·2019-08-30 14:11
閱讀 2881·2019-08-30 13:10
閱讀 2406·2019-08-29 16:33
閱讀 3335·2019-08-29 11:02