-
Notifications
You must be signed in to change notification settings - Fork 0
/
stoptree.h
124 lines (93 loc) · 2.25 KB
/
stoptree.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#ifndef STOPTREE_H
#define STOPTREE_H
#include <QString>
#include <vector>
#define NUM_OF_ENGLISH_LETTERS 26
class StopTree
{
public:
StopTree();
virtual void add(QString word) = 0;
virtual bool isExisted(QString word) = 0;
};
class StopTreeObject
{
private:
StopTree *stopTree;
StopTreeObject();
QString filePath;
public:
static StopTreeObject &getInstace();
void setStopWordFilePath(QString filePath);
void buildBST();
void buildTrie();
void buildTST();
void buildTree();
bool isExisted(QString word);
~StopTreeObject();
};
struct BSTStopNode
{
BSTStopNode(QString &word);
QString value;
BSTStopNode *leftChild;
BSTStopNode *rightChild;
};
class BSTStop : public StopTree
{
BSTStopNode *root;
public:
BSTStop();
void add(QString word);
bool isExisted(QString word);
};
// A node of ternary search tree
struct TSTStopNode
{
char data;
// True if this character is last character of one of the words
unsigned isEndOfString = 1;
TSTStopNode *left, *eq, *right;
};
class TSTStop : public StopTree
{
TSTStopNode *root;
void insert(char *word);
void insertUtil(TSTStopNode** root, char *word);
TSTStopNode *newNode(char data);
void traverseTSTUtil(TSTStopNode *root, char* buffer, int depth);
void traverseTST();
int searchTST(TSTStopNode *root, char *word);
int search(char *word);
public:
TSTStop();
void add(QString word);
bool isExisted(QString word);
};
class TrieStopNode {
public:
TrieStopNode() { mContent = ' '; mMarker = false; }
~TrieStopNode() {}
char content() { return mContent; }
void setContent(char c) { mContent = c; }
bool wordMarker() { return mMarker; }
void setWordMarker() { mMarker = true; }
TrieStopNode* findChild(char c);
void appendChild(TrieStopNode* child) { mChildren.push_back(child); }
std::vector<TrieStopNode*> children() { return mChildren; }
private:
char mContent;
bool mMarker;
std::vector<TrieStopNode*> mChildren;
};
class TrieStop : public StopTree {
public:
TrieStop();
~TrieStop();
void add(QString s);
bool isExisted(QString s);
void deleteWord(QString s);
private:
TrieStopNode* root;
};
#endif // STOPTREE_H