class Solution:
def removeDuplicateLetters(self, s: str) -> str:
stack=[]
dic={}
for item in s:
if item not in dic:
dic[item]=1
else:
dic[item]+=1
for item in s:
if not stack:
dic[item]-=1
stack.append(item)
else:
dic[item]-=1
if item in stack:
continue
while(stack and dic[stack[-1]]>0 and stack[-1]>item):
stack.pop()
stack.append(item)
res=''
for i in stack:
res+=i
return res
LEETCODE 316. 去除重复字母
本文介绍了一个名为`removeDuplicateLetters`的函数,它通过栈和哈希表的数据结构,解决给定字符串去除重复字符的问题。算法利用哈希表存储字符出现次数,再用栈辅助遍历并保持有序输出不重复字符。
摘要由CSDN通过智能技术生成