-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword.cpp
executable file
·140 lines (123 loc) · 1.75 KB
/
word.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Ryan Wiener, Porter Haet, 2/16/17
#include "word.h"
word::word()
{
totalCount = 0;
data = "";
}
word::word(string dat)
{
totalCount = 0;
data = dat;
}
word* word::getLeft()
{
return n.left;
}
word* word::getRight()
{
return n.right;
}
void word::insert(word* w)
{
// cout << "inserting " << w->getWord() << endl;
if (w->data > this->data)
{
// cout << "is greater" << endl;
if (n.right)
{
n.right->insert(w);
}
else
{
n.right = w;
}
}
else
{
// cout << "is less" << endl;
if (n.left)
{
n.left->insert(w);
}
else
{
n.left = w;
}
}
}
string word::getWord()
{
return data;
}
word* word::get(string dat)
{
if (dat == this->data)
{
return this;
}
if (dat > this->data)
{
if (n.right)
{
return n.right->get(dat);
}
else
{
return 0;
}
}
if (n.left)
{
return n.left->get(dat);
}
else
{
return 0;
}
}
list<file>* word::getFiles() {
return &files;
}
int word::getWordTotal()
{
return totalCount;
}
int word::getFileTotal() {
return files.length();
}
double word::getWordAverage() {
return static_cast<double>(totalCount) / files.length();
}
void word::incrementTotalCount() {
totalCount++;
}
bool word::operator==(const word& other) {
return data == other.data; // only compare the string and not the list of files
}
int word::getHashCode() {
int code = 0;
// only hash the first four characters
for (int i = 0; i < 4 && i < data.length(); i++) {
int twentysix = 26;
for (int n = 0; n < i; n++) { twentysix *= 26; }
code += twentysix * (data[i] % 26);
}
return code;
}
void word::print(int &numWords)
{
if (n.left)
{
n.left->print(numWords);
}
if (numWords > 0)
{
cout << this->data << endl;
numWords--;
if (n.right)
{
n.right->print(numWords);
}
}
}