1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-09 11:00:23 +08:00

refactor Cut function, make CutAll a seperate function, to simplify the logic of Cut function

This commit is contained in:
Wang Bin
2015-03-30 15:18:36 +08:00
parent 556b96b137
commit c4c3a5f9ad
5 changed files with 44 additions and 118 deletions

View File

@@ -1,11 +0,0 @@
package jiebago
type Entry struct {
Word string
Flag string
Freq float64
}
type DictLoader interface {
AddEntry(Entry)
}