摘要:復雜度思路用一個每次考慮當前的字符大小和的頂端字符的大小,如果當前字符比較小的話,則可以出頂端的字符,將當前的字符放進中。需要維持了一個判斷當前字符在剩余字符串中的出現次數,考慮能否將這個字符從棧中彈出。
LeetCode[316] Remove Duplicate Letters
ascii arrayGiven a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You must make sure your result is the smallest in lexicographical order among all possible results.
Example:
Given "bcabc"
Return "abc"Given "cbacdcbc"
Return "acdb"
復雜度
O(N), O(N)
思路
用一個stack,每次考慮當前的字符大小和stack的頂端字符的大小,如果當前字符比較小的話,則可以poll出stack頂端的字符,將當前的字符放進stack中。需要維持了一個array判斷當前字符在剩余字符串中的出現次數,考慮能否將這個字符從棧中彈出。
代碼
public String removeDuplicateLetters(String s) { Stackstack = new Stack<>(); int[] arr = new int[26]; boolean[] visited = new boolean[26]; for(int i = 0; i < s.length(); i ++) { arr[s.charAt(i) - "a"] ++; } // for(int i = 0; i < s.length(); i ++) { char ch = s.charAt(i); arr[ch - "a"] --; if(visited[ch - "a"]) continue; if(!stack.isEmpty() && ch < stack.peek()) { // while(!stack.isEmpty() && arr[stack.peek() - "a"] > 0 && ch < stack.peek()) { char temp = stack.pop(); visited[temp - "a"] --; } } visited[ch - "a"] = true; stack.push(ch); } // build the string; StringBuilder builder = new StringBuilder(); while(!stack.isEmpty()) { builder.append(stack.pop()); } return builder.reverse().toString(); }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65267.html
摘要:以及枚舉的做法,因為這題只有個字母,枚舉的復雜度是,參考博客還有先把排序,然后從小到大取字母的寫法,參考 316. Remove Duplicate Letters 題目鏈接:https://leetcode.com/problems... 用一個stack來做,stack里面的字母按增序來排,出現top>cur的時候要把top給pop出來,注意一點是如果后面沒有top的話,就不能po...
摘要:每個字母只留一個,而且保證字典序最小。從前往后掃描,還要往前看一個檢出是否刪除的,要用解。需要一個數據結構記錄是否使用這個字母,可以用。結構也可以用數組加頂點指針模擬。 316 Remove Duplicate Given a string which contains only lowercase letters, remove duplicate letters so that e...
摘要:首先要求就是得保證在原來的字符串中存在當前字符的順序,即要保證每次的字符的次數大于。讀字符的過程中,把字符存到里,當發現之前存的字符中比當前字符大而且頻率還大于就可以把那個字符出去。基本思想就是在一定的限制條件下出比當前選擇差的元素。 Remove Duplicate Letters Given a string which contains only lowercase lette...
Problem Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You must make sure your result is the smallest in lexicographical...
Problem Given a list of directory info including directory path, and all the files with contents in this directory, you need to find out all the groups of duplicate files in the file system in terms o...
閱讀 1410·2021-11-22 09:34
閱讀 1381·2021-09-22 14:57
閱讀 3410·2021-09-10 10:50
閱讀 1389·2019-08-30 15:54
閱讀 3693·2019-08-29 17:02
閱讀 3476·2019-08-29 12:54
閱讀 2618·2019-08-27 10:57
閱讀 3322·2019-08-26 12:24