zoukankan      html  css  js  c++  java
  • LeetCode-Remove Duplicate Letters

    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 order among all possible results.

    Example:

    Given "bcabc"
    Return "abc"

    Given "cbacdcbc"
    Return "acdb"

    Credits:
    Special thanks to @dietpepsi for adding this problem and creating all test cases.

    Analysis:

    We maintain a smallest valid char list and iterate through the whole string. When we move to the next char, we want to put it as ahead as possible in the valid char list so we want to remove all chars that are larger than it straing from the tail, e.g., "acd" and the next char is 'b', we then want to put it after 'a'; however, whether we can remove 'd' and 'c' depends on whether there are still 'b' and 'c' in the left string, if yes, then we can safely remove them.

    Also, if we cannot remove 'd', then we cannot remove any chars in front of 'd', because this will actually enlarge the lexicographical order. e.g., "acd" and the following is "bc", if we remove "c", then the result is "adbc" which is larger than "acdb".

    Solution:

     1 public class Solution {
     2     public String removeDuplicateLetters(String s) {
     3         if (s.length() == 0)
     4             return s;
     5 
     6         int[] charCount = new int[26];
     7         boolean[] inStack = new boolean[26];
     8         Arrays.fill(charCount, 0);
     9         Arrays.fill(inStack, false);
    10         char[] charArray = s.toCharArray();
    11         for (char c : charArray) {
    12             charCount[c - 'a']++;
    13         }
    14 
    15         Stack<Character> resStack = new Stack<Character>();
    16         for (char c : charArray) {
    17             int index = c - 'a';
    18             charCount[index]--;
    19             
    20             if (inStack[index])
    21                 continue;
    22 
    23             while (!resStack.isEmpty() && resStack.peek() > c && charCount[resStack.peek() - 'a'] > 0) {
    24                 inStack[resStack.pop() - 'a'] = false;
    25             }
    26 
    27             resStack.push(c);
    28             inStack[index] = true;
    29         }
    30 
    31         StringBuilder builder = new StringBuilder();
    32         while (!resStack.isEmpty()) {
    33             builder.append(resStack.pop());
    34         }
    35         return builder.reverse().toString();
    36     }
    37 }
  • 相关阅读:
    sharepoint2010无法连接到配置数据库。
    多选框加和单选框一样的控制,只能选一个
    Windows Server 2008 网站访问PHP响应慢的解决方法
    Windows下的PHP安装文件线程安全和非线程安全的区别
    Apache+PHP 环境上传文件配置
    出现 HTTP Error 503. The service is unavailable 错误
    IIS7 上传 下载文件大小限制的设置
    php 错误信息配置
    新篇章
    面向对象
  • 原文地址:https://www.cnblogs.com/lishiblog/p/5684495.html
Copyright © 2011-2022 走看看