-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
executable file
·127 lines (106 loc) · 2.59 KB
/
main.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 main
import (
"bufio"
"flag"
"fmt"
"github.com/marcelo-r/automaton/dfa"
"os"
"strings"
)
var auto = dfa.NewDFA(0, false)
var infoFlag = flag.Bool("info", false, "Imprimir detalhes do funcionamento do automato")
const regras = `
alfabeto = {a, b, c}
1. palavras terminam apenas em 'b' ou 'c', nunca em 'a'
2. b não pode ser concatenado a outro 'b' antes que surja um 'c'
3. a aparição de qualquer 'c' permite concatenação de 'b's posteriores
4. nenhum 'a' é permitido após qualquer 'c'
5. qualquer palavra sempre termina com o simbolo de maior "valor" na palavra`
const gdef = "\n\u03a3 = {a, b, c}\nV = {S, X, Y, Z, T, W, V, K, L, M}\nS = S\nP: "
const gp = `
S -> aS | K
K -> b | bX
X -> aY | L
L -> c | cZ
Y -> aY | K | L
Z -> bT | L
T -> bT | M
M -> c | cW
W -> bT | M`
var INFO = *infoFlag
func main() {
mainMenu()
}
func init() {
flag.Parse()
// adicionar todos os estados
auto.AddState(1, true) // f
auto.AddState(2, false)
auto.AddState(3, true) // f
auto.AddState(4, false)
auto.AddState(5, true) // f
auto.AddState(6, false)
// o automato deve ter um alfabeto antes de poder ter alguma transição
auto.AddToAlphabet('a')
auto.AddToAlphabet('b')
auto.AddToAlphabet('c')
// transições no formato delta(estado, entrada) = estado_destino
// 0
auto.AddTransition(0, 'a', 0)
auto.AddTransition(0, 'b', 1)
auto.AddTransition(0, 'c', 6)
// 1
auto.AddTransition(1, 'a', 2)
auto.AddTransition(1, 'b', 6)
auto.AddTransition(1, 'c', 3)
// 2
auto.AddTransition(2, 'a', 2)
auto.AddTransition(2, 'b', 1)
auto.AddTransition(2, 'c', 3)
// 3
auto.AddTransition(3, 'a', 6)
auto.AddTransition(3, 'b', 4)
auto.AddTransition(3, 'c', 3)
// 4
auto.AddTransition(4, 'a', 6)
auto.AddTransition(4, 'b', 4)
auto.AddTransition(4, 'c', 5)
// 5
auto.AddTransition(5, 'a', 6)
auto.AddTransition(5, 'b', 4)
auto.AddTransition(5, 'c', 5)
// 6
auto.AddTransition(6, 'a', 6)
auto.AddTransition(6, 'b', 6)
auto.AddTransition(6, 'c', 6)
}
func mainMenu() {
counter := make(map[string]int)
counter["r"], counter["a"] = 0, 0
fmt.Println("Bem vindo")
listarRegras()
leitor := bufio.NewReader(os.Stdin)
for {
fmt.Printf("\n$ ")
palavra, _ := leitor.ReadString('\n')
palavra = strings.TrimSuffix(palavra, "\n")
if palavra == "\\q" {
fmt.Printf("\nresultado\na: %d \nr: %d\n", counter["a"], counter["r"])
break
}
ok := auto.CheckWord(palavra)
if ok {
counter["a"]++
fmt.Println("+ aceita +")
} else {
counter["r"]++
fmt.Println("- rejeita -")
}
}
}
func listarRegras() {
fmt.Println(regras)
if *infoFlag {
fmt.Println(gdef + gp)
}
}