leetcode-316-去除重复字母-1081-不同字符的最小子序列

在这里插入图片描述
在这里插入图片描述

class Solution {
    public String removeDuplicateLetters(String s) {
        // 存储结果的栈
        Stack<Character> stack = new Stack<>();
        // 记录字符串中字符出现的次数
        int[] count = new int[26];
        for (int i = 0; i < s.length(); i++) {
            count[s.charAt(i) - 'a']++;
        }
        // 记录字符是否已经存在于结果栈中,默认值为 false
        boolean[] inStack = new boolean[26];
        for (char c : s.toCharArray()) {
            // 当前遍历的字符对应计数 -1
            count[c - 'a']--;
            if (inStack[c - 'a']) {
                // 当前遍历的字符已放入结果栈,跳过
                continue;
            }
            // 剩余的字符串中还存在栈顶字符 且 当前遍历的字符字典序小于栈顶字符
            while (!stack.isEmpty() && stack.peek() > c && count[stack.peek() - 'a'] != 0) {
                // 弹出栈顶字符并标记为不存在于结果栈中
                inStack[stack.pop() - 'a'] = false;
            }
            stack.push(c);
            inStack[c - 'a'] = true;
        }

        StringBuilder sb = new StringBuilder();
        while (!stack.isEmpty()) {
            sb.append(stack.pop());
        }
        return sb.reverse().toString();
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值