-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixed_key.go
127 lines (111 loc) · 2.21 KB
/
fixed_key.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
package mono
import (
"fmt"
"io"
)
type Fixed_Key struct {
fixed_ [26]byte
dummy_ byte
not_fixed_ [27]byte
index_ [26]int
number_fixed_ int
}
func NewFixed_Key() Fixed_Key {
fk := Fixed_Key{dummy_: 0}
for i := 0; i < len(fk.fixed_); i++ {
fk.fixed_[i] = byte(' ')
}
(&fk).set_index()
return fk
}
func (f Fixed_Key) Length() int {
return len(f.fixed_)
}
func (f Fixed_Key) NotFixedLength() int {
return len(f.not_fixed_) - 1
}
func (f Fixed_Key) Fixed(i int) byte {
return f.fixed_[i]
}
func (f Fixed_Key) NotFixed(i int) byte {
return f.not_fixed_[i]
}
func (f *Fixed_Key) set_index() {
i := 0
f.number_fixed_ = 0
for i = 0; i < len(f.fixed_); i++ {
f.index_[i] = -1
}
for i = 0; i < len(f.fixed_); i++ {
if f.fixed_[i] != byte(' ') {
f.index_[f.fixed_[i]-byte('a')] = i
f.number_fixed_++
}
}
i = 0
for c := 'a'; c <= 'z'; c++ {
if !f.Is_set(byte(c)) {
f.not_fixed_[i] = byte(c)
i++
}
}
f.not_fixed_[i] = 0
}
func (f Fixed_Key) Is_set(pt byte) bool {
return (f.Get_ct(pt) != byte(' '))
}
func (f Fixed_Key) Get_pt(ct byte) byte {
i := ct - byte('A')
if i < 0 || int(i) >= len(f.fixed_) {
return ' '
}
return f.fixed_[i]
}
func (f Fixed_Key) Get_ct(pt byte) byte {
i := pt - byte('a')
if i < 0 || int(i) >= len(f.fixed_) {
return ' '
}
if f.index_[i] < 0 {
return ' '
}
return byte(f.index_[i]) + byte('A')
}
func (f *Fixed_Key) Set(pt, ct byte) {
if ct < byte('A') || ct > byte('Z') {
return
}
if pt < byte('a') || pt > byte('z') {
return
}
i := ct - byte('A')
if f.Is_set(pt) {
f.clear(f.Get_ct(pt))
}
f.fixed_[i] = pt
f.set_index()
}
func (f *Fixed_Key) clear(ct byte) {
i := ct - byte('A')
if i < 0 || int(i) >= len(f.fixed_) {
return
}
if f.fixed_[i] != byte(' ') {
f.fixed_[i] = byte(' ')
}
}
func (f Fixed_Key) Number_fixed() int {
return f.number_fixed_
}
func (f Fixed_Key) Display(w io.Writer) {
fmt.Fprintf(w, "number fixed = %d\n", f.number_fixed_)
for i := 0; i < len(f.fixed_); i++ {
fmt.Fprintf(w, "%s", string(f.fixed_[i]))
}
fmt.Fprintln(w, "")
fmt.Fprintf(w, "Not fixed : [%s]\n", string(f.not_fixed_[:24]))
for i := 0; i < len(f.index_); i++ {
fmt.Fprintf(w, "%d ", f.index_[i])
}
fmt.Fprintln(w, "")
}