Pagini recente » Cod sursa (job #655296) | Cod sursa (job #475789) | Cod sursa (job #840054) | Cod sursa (job #2767035) | Cod sursa (job #1308221)
#define IA_PROB "trie"
#include <cstring>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <unordered_map>
#include <queue>
#include <stack>
#include <algorithm>
#include <fstream>
#include <iostream>
using namespace std;
class Trie {
private:
const char eow = 'z' + 1;
struct node {
int refcnt;
map<char, node*> children;
node() : refcnt(0), children() { }
} root;
public:
void insert(string &word) {
node *n = &root;
n->refcnt++;
word.push_back(eow);
for (char c : word) {
auto it = n->children.find(c);
if (it == n->children.end()) {
node *nn = new node();
n->children[c] = nn;
n = nn;
} else {
n = it->second;
}
n->refcnt++;
}
}
void remove(string &word) {
/* we're assuming that word is definitely present;
* otherwise we'd first have to look it up. */
node *n = &root;
n->refcnt--;
word.push_back(eow);
for (char c : word) {
node *prev = n;
n = n->children[c];
n->refcnt--;
if (prev->refcnt == 0 && prev != &root) {
delete prev;
} else if (n->refcnt == 0) {
prev->children.erase(c);
}
}
delete n;
}
int count(string &word) {
node *n = &root;
word.push_back(eow);
for (char c : word) {
auto it = n->children.find(c);
if (it == n->children.end()) {
return 0;
}
n = it->second;
}
return n->refcnt;
}
int max_common_prefix_len(string &word) {
int ret = 0;
node *n = &root;
for (char c : word) {
auto it = n->children.find(c);
if (it == n->children.end()) {
break;
}
n = it->second;
ret++;
}
return ret;
}
};
int main()
{
freopen( IA_PROB".in", "r", stdin );
freopen( IA_PROB".out", "w", stdout );
Trie trie;
char line[ 32 ];
fgets( line, 32, stdin );
string word;
word.reserve(32);
while( !feof( stdin ) ) {
word = line + 2;
word.pop_back();
switch( line[0] ) {
case '0': trie.insert(word); break;
case '1': trie.remove(word); break;
case '2': printf( "%d\n", trie.count(word) ); break;
case '3': printf( "%d\n", trie.max_common_prefix_len(word) ); break;
}
fgets( line, 32, stdin );
}
return 0;
}