(10) Given the definition of functions in the downloadable file beside this home- work document), write the following fu
Posted: Thu May 12, 2022 3:08 pm
(10) Given the definition of functions in the downloadable file beside this home- work document), write the following functions: isFinal(X) outputs true if X is a final state and false (nil) otherwise. getNextState(s, c) outputs the next state given a state s and a symbol c. scan(s, input) where s is a state and input is a list of sym- bols. It outputs, to the console, all states, which the automata has gone through in terms of input. It further outputs to console ACCEPT if input is accepted by the automata and REJECT Otherwise. For example, scan(q0, (0, 1)) will output QO Q2 Q3 REJECT.