class Solution {
public:
string removeDuplicateLetters(string s) {
stack<char> st;
unordered_map<char,int> map;
unordered_set<char> set;
for(int i=0;i<s.size();i++){
map[s[i]]=i;//遍历map 记录每个字符在字符串中的最后一个位置
}
for(int i=0;i<s.size();i++){
if(set.count(s[i])>0) continue ;//set中每个键值出现的次数//set起到了中介的作用 表示若栈中有该元素就不做任何操作
while(!st.empty()&&s[i]<st.top()&&map[st.top()]>i){//栈不为空 栈顶元素大于当前元素 栈顶元素在后续还会出现 弹出
char temp=st.top();
st.pop();
set.erase(temp);
}
st.push(s[i]);
set.insert(s[i]);
}
string res = "";
while (!st.empty()) {
res = st.top() + res; st.pop();
}
#include<iostream>
#include<stack>
#include<string>
#include<unordered_set>
using namespace std;
string removeduplicated(string s){//删除重复的字母(华为模拟)
unordered_set<char> set;
stack<char> st;
for(int i=0;i<s.size();i++){
if(set.count(s[i])>0){ continue;}
set.insert(s[i]);
st.push(s[i]);
}
string res="";
while(!st.empty()) {
res = st.top() + res;
st.pop();
}
return res;
}
int main(){
string s;
cin>>s;
cout<<removeduplicated(s);
return 0;
}
17.
class Trie {
public:
bool isEnd;
Trie* next[26];
/** Initialize your data structure here. */
Trie() {
isEnd=false;
memset(next,0,sizeof(next));
}
/** Inserts a word into the trie. */
void insert(string word) {
Trie* Node=this;
for(char ch:word){//ch占word个字节
if(Node->next[ch-'a']==NULL){
Node->next[ch-'a']=new Trie;//为空插入
}
Node=Node->next[ch-'a'];
}
Node->isEnd=true;
}
/** Returns if the word is in the trie. */
bool search(string word) {
Trie *Node=this;
for(char ch:word){
Node=Node->next[ch-'a'];
if(Node==NULL){
return false;
}
}
return Node->isEnd;//前面都匹配 看isend来判定是否存在该单词
}
/** Returns if there is any word in the trie that starts with the given prefix. */
bool startsWith(string prefix) {
Trie *Node=this;
for(char ch:prefix){
Node=Node->next[ch-'a'];
if(Node==NULL){
return false;
}
}
return true;//区别于查找 前缀只要找到 必定匹配
}
};
/**
* Your Trie object will be instantiated and called as such:
* Trie* obj = new Trie();
* obj->insert(word);
* bool param_2 = obj->search(word);
* bool param_3 = obj->startsWith(prefix);
*/```
主要知识点:前缀树是一种树数据结构,用于检索字符串数据集中的键。
trie树结点
`struct TrieNode {
bool isEnd; //该结点是否是一个串的结束
TrieNode* next[26]; //字母映射表 a-z
};
`
TrieNode* next[26]中保存了对当前结点而言下一个可能出现的所有字符的链接,因此可以通过一个父结点来预知它所有子结点的值。