给你一个字符串 s ,请你去除字符串中重复的字母,使得每个字母只出现一次。需保证 返回结果的字典序最小(要求不能打乱其他字符的相对位置)。
注意:该题与 1081 https://leetcode-cn.com/problems/smallest-subsequence-of-distinct-characters 相同
示例 1:
输入:s = "bcabc"
输出:"abc"
示例 2:
输入:s = "cbacdcbc"
输出:"acdb"
提示:
1 <= s.length <= 104
s 由小写英文字母组成
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/remove-duplicate-letters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution { public String removeDuplicateLetters(String s) { int[] cnt=new int[26]; int n=s.length(); for(int i=0;i<n;i++){ cnt[s.charAt(i)-'a']++; } int pos=0; for(int i=0;i<n;i++){ if(s.charAt(pos)>s.charAt(i))pos=i; if(--cnt[s.charAt(i)-'a']==0)break; } return n==0?"":s.charAt(pos)+removeDuplicateLetters(s.substring(pos+1).replaceAll(""+s.charAt(pos),"")); } }