Implement deterministic finite automaton using cpp language


Problem

Implement a deterministic finite automaton (DFA) using C++ programming language to test if an input DNA sequence matches a regular expression.

I. The alphabet for generating DNA sequences is {A, T, G, C}. Design a deterministic finite automaton to recognize the regular expression (TT+G)*(A+T). If you can't design directly the DFA, you can convert the regular expression to NFA and convert the NFA to get DFA.

II. A program which asks the user to input a DNA sequence. The program should be able test if the input matches the regular expression given in (1). You MUST implement DFA from (1) to check if the DNA sequence is a part of the regular expression or not.

The program should mimic how a DFA processes a string: reading one letter at a time and doing state transitions.

Below are four sample input/output. Only the bolded strings are user inputs.

Input a DNA sequence: GTTTTGT
The pattern GTTTTGT is valid for RE (TT+G)*(A+T)

Input a DNA sequence: GTTTTG
The pattern GTTTTG is not valid for RE (TT+G)*(A+T)

Input a DNA sequence: TTTGT
The pattern TTTGT is not valid for RE (TT+G)*(A+T)

Input a DNA sequence: TTGTTTTA
The pattern TTGTTTTA is valid for RE (TT+G)*(A+T)

1. A diagram of the DFA.
2. C++ program
3. Screen shots of your output

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Implement deterministic finite automaton using cpp language
Reference No:- TGS03232666

Expected delivery within 24 Hours