Skip to content

Commit

Permalink
draft of finite automata
Browse files Browse the repository at this point in the history
  • Loading branch information
yongsk0066 committed Feb 29, 2024
1 parent 458c909 commit ec3c6e3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
15 changes: 15 additions & 0 deletions public/assets/images/644387eaf76243db3ed6edf196673c44d8f88d09.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
stateDiagram-v2
direction LR
classDef Accept stroke-width:3px
state q0
state q1
state q2
[*] --> q0
q0 --> q0 : 0
q0 --> q1 : 1
q1 --> q0 : 0
q1 --> q2 : 1
q2 --> q1 : 1
q2 --> q2 : 0

class q1 Accept
17 changes: 17 additions & 0 deletions public/assets/images/69c1910d9edc7856d09ddacc5dca3474e02a06d2.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
stateDiagram-v2
direction LR
classDef Accept stroke-width:3px
state q0
state q1
state q2
state q3
[*] --> q0
q0 --> q2 : a
q0 --> q1 : b
q1 --> q1 : a, b
q2 --> q2 : b
q2 --> q3 : a
q3 --> q2 : b
q3 --> q3 : a

class q3 Accept
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "걸어서 정규표현식 까지 [유한오토마타]"
description: "정규표현식이란 무엇인가? 어디서 시작되어 어디까지"
author: "Yongseok"
pubDate: "Feb 24 2024"
pubDate: "Mar 1 2024"
heroImage: "/infinite_automata.png"
---
import LinkPreview from '../../components/LinkPreview.astro'
Expand Down

0 comments on commit ec3c6e3

Please sign in to comment.