-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathINgrams.h
213 lines (191 loc) · 5.74 KB
/
INgrams.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*******************************************************************
C++ Package of Ternary Search Tree
Copyright (C) 2006 Zheyuan Yu
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Read full GPL at http://www.gnu.org/copyleft/gpl.html
Email me at [email protected] if you have any question or comment
WebSite: http://www.cs.dal.ca/~zyu
*************************************************************************/
#ifndef _INGRAMS_H_
#define _INGRAMS_H_
#include "mystring.h"
/**
* Define the interface for ngram classes
* Revisions:
* Feb 18, 2006. Jerry Yu
* Initial implementation
*/
class INgrams
{
public:
struct NgramValue
{
int n; // N of ngram
int frequency;
NgramValue () : n(0), frequency(0)
{
}
NgramValue ( int newN, int newFrequency ) : n( newN ), frequency( newFrequency )
{
}
};
struct NgramToken
{
NgramToken()
{
}
NgramToken( string & newNgram, NgramValue & newValue )
{
ngram = newNgram;
value = newValue;
}
// Copy constructor
NgramToken( const NgramToken & copy )
{
ngram = copy.ngram;
value = copy.value;
}
string ngram;
NgramValue value;
void operator=( const NgramToken & ngramToken )
{
ngram = ngramToken.ngram;
value = ngramToken.value;
}
/**
* use following operators if we need to order the ngrams by frequency
*/
bool operator>( const NgramToken & ngramToken ) const
{
return value.frequency > ngramToken.value.frequency;
}
bool operator>=( const NgramToken & ngramToken ) const
{
return value.frequency >= ngramToken.value.frequency;
}
bool operator==( const NgramToken & ngramToken ) const
{
return value.frequency == ngramToken.value.frequency;
}
bool operator<( const NgramToken & ngramToken ) const
{
return value.frequency < ngramToken.value.frequency;
}
bool operator<=( const NgramToken & ngramToken ) const
{
return value.frequency <= ngramToken.value.frequency;
}
/**
* use following operators if we need to order the ngrams by ngram
*/
/*
bool operator>( const NgramToken & ngramToken ) const
{
return ngram < ngramToken.ngram;
}
bool operator>=( const NgramToken & ngramToken ) const
{
return ngram >= ngramToken.ngram;
}
bool operator==( const NgramToken & ngramToken ) const
{
return ngram == ngramToken.ngram;
}
bool operator<( const NgramToken & ngramToken ) const
{
return ngram < ngramToken.ngram;
}
bool operator<=( const NgramToken & ngramToken ) const
{
return ngram <= ngramToken.ngram;
}
*/
/**
* use following operators if we need to order the ngrams by frequency and ngram
*/
/*
bool operator>( const NgramToken & ngramToken ) const
{
return value.frequency > ngramToken.value.frequency || value.frequency == ngramToken.value.frequency && ngram < ngramToken.ngram ;
}
bool operator>=( const NgramToken & ngramToken ) const
{
return value.frequency >= ngramToken.value.frequency || value.frequency == ngramToken.value.frequency && ngram <= ngramToken.ngram;
}
bool operator==( const NgramToken & ngramToken ) const
{
return value.frequency == ngramToken.value.frequency && ngram == ngramToken.ngram;
}
bool operator<( const NgramToken & ngramToken ) const
{
return value.frequency < ngramToken.value.frequency || value.frequency == ngramToken.value.frequency && ngram > ngramToken.ngram;
}
bool operator<=( const NgramToken & ngramToken ) const
{
return value.frequency <= ngramToken.value.frequency || value.frequency == ngramToken.value.frequency && ngram > ngramToken.ngram;
}
*/
};
/**
* compare function to compare two NgramToken pointers
* - negative, if item 1 at address itemAddr1 less than item 2 at address itemAddr2.
* - zero, equal
* - positive, if item 1 > item 2nction
*/
#if 0
static int compareFunction (const void * a, const void * b) /* sort by alphabet */
{
/*printf("comparing %s - %s.\n", ((Element*)a)->key, ((Element*)b)->key ); */
return strcmp( ( ( *( NgramToken** )a ) )->ngram.c_str(), ( *( ( NgramToken** )b ) )->ngram.c_str() );
/*String * x = *( ( String ** ) a );
String * y = *( ( String ** ) b );
return *x > *y ? 1 : *x == *y ? 0 : -1;
*/
}
#endif
static int compareFunction (const void * a, const void * b) /* sort by frequency and word */
{
int freq1 = ( *( ( NgramToken ** ) a ) )->value.frequency;
int freq2 = ( *( ( NgramToken ** ) b ) )->value.frequency;
return freq1 > freq2 ? -1 : freq1 == freq2 ? strcmp( ( ( *( NgramToken** )a ) )->ngram.c_str(), ( *( ( NgramToken** )b ) )->ngram.c_str() ) : 1;
}
/**
* constructor
*/
INgrams( );
/**
* destructor
*/
virtual ~INgrams();
/**
* feed a token in, the token will be processed internally to generating ngram
*
* for word ngram, the token will be word string,
* for character ngram, the token will be a string of the character.
*/
virtual void addToken ( const string & token )=0;
/**
* sort ngrams by frequency/ngram/or both, then output
*/
virtual void output() =0 ;
virtual void setDelimiters( const char * newDelimiters )=0;
/**
* get total number of ngrams
*/
virtual int count()=0;
/**
* get total number ngrams for given N
*/
virtual int count( int n )=0;
};
#endif