blob: 2edc4b7fe2cebbfbf4528971852ce682472e544f (
plain)
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
|
/*
* Nfa
*
*/
function Nfa(symbol) {
this.startState = null;
this.finalState = null;
if (symbol) {
this.setStartState(new NfaState(symbol));
this.setFinalState(new NfaState(false));
this.getStartState().setFollowUp(0, this.getFinalState());
};
};
//
Nfa.prototype.getStartState = function() { return this.startState; };
Nfa.prototype.setStartState = function(s) { this.startState = s; };
Nfa.prototype.getFinalState = function() { return this.finalState; };
Nfa.prototype.setFinalState = function(s) { this.finalState = s; };
//
Nfa.prototype.concat = function(nfa) {
this.getFinalState().setFollowUp(0, nfa.getStartState());
this.setFinalState(nfa.getFinalState());
return this;
};
//
Nfa.prototype.union = function(nfa) {
var s = new NfaState();
var t = new NfaState();
s.setFollowUp(0, this.getStartState());
s.setFollowUp(1, nfa.getStartState());
this.getFinalState().setFollowUp(0, t);
nfa.getFinalState().setFollowUp(0, t);
this.setStartState(s);
this.setFinalState(t);
return this;
};
//
Nfa.prototype.kleene = function() {
var s = new NfaState();
var t = new NfaState();
s.setFollowUp(0, this.getStartState());
s.setFollowUp(1, t);
this.getFinalState().setFollowUp(0, this.getStartState());
this.getFinalState().setFollowUp(1, t);
this.setStartState(s);
this.setFinalState(t);
return this;
};
|