Webdevelopment
Drupal
Betriebssysteme
Design
Sonstige
Mo., 27/05/2019 - 22:30
Body
Links
https://stackoverflow.com/questions/255797/uses-for-state-machines | super simples leichtes Beispiel Video, das erklärt das eine State Maschine ist: https://www.youtube.com/watch?v=hJIST1cEf6A TOP erklärt
Examples
- https://stackoverflow.com/questions/133214/is-there-a-typical-state-machine-implementation-pattern
- https://blog.4xxi.com/finite-state-machine-in-web-development-dc1dc6f67d7c
- https://medium.com/@rvunabandi/making-a-calculator-in-javascript-64193ea6a492
- https://medium.com/@brianray_7981/tutorial-write-a-finite-state-machine-to-parse-a-custom-language-in-pure-python-1c11ade9bd43 | custom parser example
- https://www.mikrocontroller.net/articles/Statemachine | DAS BESTE WAS ICH IM WEB GEFUNDEN HABE
- https://softwareengineering.stackexchange.com/questions/47806/examples-of-finite-state-machines | mega simpel
- https://courses.cs.washington.edu/courses/cse370/04au/pdfs/lectures/21-FSM%20Examples.pdf
- https://techblog.thescore.com/2016/04/19/using-state-machines-to-handle-workflows/ WORKFLOW EXAMPLE
- https://www.geeksforgeeks.org/mealy-and-moore-machines/
- https://www.freecodecamp.org/news/state-machines-basics-of-computer-science-d42855debc66/
Logical Grid
Videos
- https://www.youtube.com/watch?v=0XaGAkY09Wc | TOP Videos, der ganze Kanal. Die Inder haben das echt drauf :)
- https://www.youtube.com/watch?v=DV8cZp-2VmM | deterministic Final State, multiple final states
- https://www.youtube.com/watch?v=ehy0jGIYRtE | NFA am sinnvollsten für meine HS+NS Analyse
Typen
- Deterministic finite automaton = DFA
- Non-Determiniistic finite automaton = NFA
Example mit CODE
Webdevelopment