Giter Club home page Giter Club logo

dfa-to-regex's Introduction

Hi there ๐Ÿ‘‹

dfa-to-regex's People

Contributors

vinyasns avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

dfa-to-regex's Issues

Transition functions iteration

print('Define the transition function : ')
transition_matrix = [list(map(str, input().split())) for _ in range(len(states))]
transition_funct = dict(zip(states, transition_matrix))

The array consists of len(states) elements, what if number of states differs from number of transitions?

DFA:
Q = {q0, [q1, q2], [q1, q3], q2, q1, q3}
ฮฃ = {a, b}
I = q0
F = {[q1, q3], q3}
๐›ฟ(q0, a) = [q1, q2]
๐›ฟ([q1, q2], a) = [q1, q2]
๐›ฟ([q1, q2], b) = [q1, q3]
๐›ฟ([q1, q3], a) = q2
๐›ฟ([q1, q3], b) = q1
๐›ฟ(q2, a) = q1
๐›ฟ(q2, b) = q3
๐›ฟ(q1, a) = q2
๐›ฟ(q1, b) = q1

Can you provide please and example of input for transition functions?

p.s. I like your code, it helped me with the same task.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.