2024-02-09 12:55:55

This commit is contained in:
Isaac Shoebottom 2024-02-09 12:55:55 -04:00
parent 0cd954d3bc
commit 7927ed0772
2 changed files with 17 additions and 6 deletions

View File

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "UNB/Year 4/Semester 2/CS3873/2024-02-09.md", "file": "UNB/Year 4/Semester 2/CS2333/2024-02-09.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -85,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "UNB/Year 4/Semester 2/CS3873/2024-02-09.md", "file": "UNB/Year 4/Semester 2/CS2333/2024-02-09.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -102,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "UNB/Year 4/Semester 2/CS3873/2024-02-09.md", "file": "UNB/Year 4/Semester 2/CS2333/2024-02-09.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -125,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "UNB/Year 4/Semester 2/CS3873/2024-02-09.md" "file": "UNB/Year 4/Semester 2/CS2333/2024-02-09.md"
} }
} }
}, },
@ -158,8 +158,9 @@
}, },
"active": "f37bd350f6063f55", "active": "f37bd350f6063f55",
"lastOpenFiles": [ "lastOpenFiles": [
"UNB/Year 4/Semester 2/STAT2593/2024-02-09.md",
"UNB/Year 4/Semester 2/CS3873/2024-02-09.md", "UNB/Year 4/Semester 2/CS3873/2024-02-09.md",
"UNB/Year 4/Semester 2/CS2333/2024-02-09.md",
"UNB/Year 4/Semester 2/STAT2593/2024-02-09.md",
"UNB/Year 4/Semester 2/STAT2593/2024-02-07.md", "UNB/Year 4/Semester 2/STAT2593/2024-02-07.md",
"UNB/Year 4/Semester 2/STAT2593/2024-02-05.md", "UNB/Year 4/Semester 2/STAT2593/2024-02-05.md",
"UNB/Year 4/Semester 2/STAT2593/2024-02-02.md", "UNB/Year 4/Semester 2/STAT2593/2024-02-02.md",
@ -183,7 +184,6 @@
"UNB/Year 4/Semester 2/CS2333/2024-01-24.md", "UNB/Year 4/Semester 2/CS2333/2024-01-24.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-24.md", "UNB/Year 4/Semester 2/CS3873/2024-01-24.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-22.md", "UNB/Year 4/Semester 2/CS3873/2024-01-22.md",
"UNB/Year 4/Semester 2/STAT2593/2024-01-24.md",
"gcm-diagnose.log", "gcm-diagnose.log",
"Semester 2/STAT2593/Untitled", "Semester 2/STAT2593/Untitled",
"Semester 2/STAT2593", "Semester 2/STAT2593",

View File

@ -0,0 +1,11 @@
Lecture Topic: More NFA
Design a state diagram for an NFA that accepts
$$L = \{w \in \{a,b,c\}^* | \text{w starts with abc, ends with aab, and contains the substring bb}\}$$
So, the first three states must be connecting a, b and c
(D) -a, b, c> (D)
(F) -a, b, c> (F)
(A) -a> (B) -b> (C) -c> (D) -b> (E) -b> (F) -a> (G) -a> (H) -b> ((I))
It's important that on D and F, that b is allowed to loop, as if it did not, some valid strings would not be accepted, as it would only allow for two bs in the middle