Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Definition for a NFA state. More...
Data Fields | |
int | ruleCount |
number of transition rules this state have | |
struct transRule ** | rules |
the transition rules | |
Definition for a NFA state.
Each NFAState object is initialized to have a capacity of three rules, since there will only be at most two outgoing rules and one empty character circular rule in this algorithm