-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonoglyphic.go
271 lines (219 loc) · 5.02 KB
/
monoglyphic.go
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package main
import (
"bufio"
"flag"
"fmt"
"os"
"runtime"
"sort"
)
var _ = fmt.Println
var wordListPath = flag.String("wordlist", "/usr/share/dict/words", "path to the word list")
type letterSet int32
func (this *letterSet) add(value uint8) {
*this |= 1 << toIndex(value)
}
func (this *letterSet) contains(value uint8) bool {
return (*this & (1 << toIndex(value))) == 1
}
func (this *letterSet) conflictsWith(other letterSet) bool {
return (*this & other) != 0
}
func toLetterSet(input string) letterSet {
result := letterSet(0)
for _, character := range input {
result.add(uint8(character))
}
return result
}
type trieNode struct {
value uint8
parent *trieNode
terminal bool
next [26]*trieNode
used letterSet
partial string
}
func newTrieNode(parent *trieNode) *trieNode {
node := &trieNode{
used: letterSet(0),
parent: parent,
terminal: false,
partial: "",
}
if parent != nil {
node.used = parent.used
}
return node
}
func (this *trieNode) insert(value string) {
if len(value) == 0 {
this.terminal = true
return
}
character := value[0]
index := toIndex(character)
if this.next[index] == nil {
this.next[index] = newTrieNode(this)
next := this.next[index]
next.value = character
next.used.add(character)
next.partial = this.partial + value[0:1]
}
this.next[index].insert(value[1:])
}
func (this *trieNode) walk(value string) *trieNode {
if len(value) == 0 {
return this
}
next := this.next[toIndex(value[0])]
if next != nil {
return next.walk(value[1:])
}
return nil
}
func (this *trieNode) dump() {
if this.terminal {
fmt.Println(this.partial)
}
for _, next := range this.next {
next.dump()
}
}
func (this *trieNode) findUnconflictedTerminals(used letterSet, handler func(*trieNode)) {
if this.used.conflictsWith(used) {
return
}
if this.terminal {
handler(this)
}
for _, next := range this.next {
if next != nil {
next.findUnconflictedTerminals(used, handler)
}
}
}
func toIndex(input uint8) uint {
return uint(input - 'a')
}
func validWord(input string) bool {
// TODO(gkelly): Find a better wordlist.
if len(input) == 1 && input != "a" && input != "i" {
return false
}
used := make([]bool, 26)
for _, character := range input {
if character < 'a' || character > 'z' {
return false
}
index := toIndex(uint8(character))
if used[index] {
return false
}
used[index] = true
}
return true
}
func countWords(input string, root *trieNode) int {
count := 0
for i := range input {
node := root
for j := i; j < len(input); j++ {
if node = node.walk(input[j : j+1]); node == nil {
break
}
if node.terminal {
count += 1
}
}
}
return count
}
// TODO(gkelly): Yes, this is a huge race just waiting to happen. Replace this
// logic with a goroutine that tracks the maximum length seen.
var recordLength = 0
var recordPartial = ""
func augmentPartial(partial string, root *trieNode, wordList *[]string, depth int) {
for i := len(partial); i >= 0; i-- {
prefix, suffix := partial[:i], partial[i:]
prefixSet := toLetterSet(prefix)
suffixNode := root.walk(suffix)
if suffixNode == nil {
return
}
suffixHandler := func(node *trieNode) {
validSuffix := node.partial
if len(validSuffix) <= len(suffix) {
return
}
length := countWords(prefix+validSuffix, root)
if length > recordLength {
recordLength = length
recordPartial = prefix + validSuffix
fmt.Println(recordPartial, recordLength)
}
newPartial := prefix + validSuffix
augmentPartial(newPartial, root, wordList, depth+1)
}
suffixNode.findUnconflictedTerminals(prefixSet, suffixHandler)
}
}
func handleRootSearch(root *trieNode, wordList *[]string, words chan string, done chan interface{}) {
for word := range words {
augmentPartial(word, root, wordList, 0)
fmt.Println("done", word)
}
<-done
}
type wordScore struct {
word string
score int
}
type wordScores []wordScore
func (this wordScores) Len() int {
return len(this)
}
func (this wordScores) Swap(i, j int) {
this[i], this[j] = this[j], this[i]
}
func (this wordScores) Less(i, j int) bool {
return this[i].score > this[j].score
}
func main() {
flag.Parse()
runtime.GOMAXPROCS(runtime.NumCPU())
wordList, _ := os.Open(*wordListPath)
reader := bufio.NewReader(wordList)
words := make([]string, 0)
for {
line, _, err := reader.ReadLine()
if err != nil {
break
}
word := string(line)
if validWord(word) {
words = append(words, word)
}
}
root := newTrieNode(nil)
for _, word := range words {
root.insert(word)
}
scores := wordScores(make([]wordScore, 0))
for _, word := range words {
scores = append(scores, wordScore{word: word, score: countWords(word, root)})
}
sort.Sort(scores)
wordChannel := make(chan string)
doneChannel := make(chan interface{})
for i := 0; i < runtime.GOMAXPROCS(0); i++ {
go handleRootSearch(root, &words, wordChannel, doneChannel)
}
for _, word := range scores {
wordChannel <- word.word
}
close(wordChannel)
for i := 0; i < runtime.GOMAXPROCS(0); i++ {
<-doneChannel
}
}