Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

regex to DFA in Python, JAVA, C and C++

Open dhruvmillu opened this issue 2 years ago • 1 comments

Is your feature request related to a problem? Please describe. This program will take in a regular expression with applicable operations i.e + , . , () and * in Python, JAVA, C and C++, and print out the transition table of DFA

Describe the solution you'd like A converter that converts REGEX to DFA and test strings

sample input:

enter input symbols: 0 1
enter regex: 0(0+1)*
enter test string: 0110110101

output:

present state Next state for Input 0 Next state for Input 1
→ q0 q1 q2
*q1 q1 q1
True

please assign this to me under SSoC 2.0

dhruvmillu avatar Jun 09 '23 22:06 dhruvmillu

Assigned! @dhruvmillu : C, C++, Python and Java

Kumar-laxmi avatar Jun 10 '23 03:06 Kumar-laxmi

Stale issue message

github-actions[bot] avatar May 28 '24 16:05 github-actions[bot]