99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫ECS 120、代做Java/Python編程設計

時間:2024-01-30  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Homework 1 – ECS 120, Winter 2024
1 Auto-graded problems
These problems are not randomized, so there is no need to first submit a file named req. Each
problem below appears as a separate “Assignment” in Gradescope, beginning with “HW1:”.
1.1 DFAs
For each problem submit to Gradescope a .dfa file describing a DFA deciding the given language.
Make sure that it is a plain text file that ends in .dfa (not .txt).
Use the finite automata simulator to test the DFAs: http://web.cs.ucdavis.edu/~doty/
automata/. Documentation is available at the help link at the top of that web page.
Do not just submit to Gradescope without testing on the simulator. The purpose
of this homework is to develop intuition. Gradescope will tell you when your DFA gets an answer
wrong, but it will not tell you why it was wrong. You’ll develop more intuition by running the
DFA in the simulator, trying to come up with some of your own examples and seeing where they
fail, than you will by just using the Gradescope autograder as a black box. Once you think your
solution works, submit to Gradescope. If you fail any test cases, go back to the simulator and use
it to see why those cases fail. During an exam, there’s no autograder to help you figure out if your
answer is correct. Practice right now how to determine for yourself whether it is correct.
Gradescope may give strange errors if your file is not formatted properly. If your file is not
formatted properly, the simulator will tell you this with more user-friendly errors. Also, if you lose
points on a Gradescope test case, try that test case in the simulator to ensure that your DFA is
behaving as you expect.
begin and end: {w ∈ {0, 1}

| w begins with 010 and ends with a 0 }
at most three 1s: {w ∈ {0, 1}

| w contains at most three 1’s}.
no substring: {w ∈ {a, b, c}

| w does not contain the substring acab}.
even odd: {w ∈ {a, b}

| w starts with a and has even length, or w starts with b and has odd
length }.
mod: {w ∈ {0, 1}

| w is the binary expansion of n ∈ N and n ≡ 3 mod 5}. Assume ε represents
0 and that leading 0’s are allowed. A number n ∈ N is congruent to 3 mod 5 (written n ≡ 3
mod 5) if n is 3 greater than a multiple of 5, i.e., n = 5k + 3 for some k ∈ N. For instance,
3, 8, and 13 are congruent to 3 mod 5.
1.2 Regular expressions
For each problem submit to Gradescope a .regex file with a regular expression deciding the given
language. Use the regular expression evaluator to test each regex: http://web.cs.ucdavis.
edu/~doty/automata/. Do not test them using the regular expression library of a programming
language; typically these are more powerful and have many more features that are not available in
the mathematical definition of regular expressions from the textbook. Only the special symbols (
) * + | are allowed, as well as “input alphabet” symbols: alphanumeric, and . and @.
Note on subexpressions: You may want to use the ability of the regex simulator to define
subexpressions that can be used in the main regex. (See example that loads when you click “Load
Default”). But it is crucial to use variable names for the subexpressions that are not themselves
symbols in the input alphabet; e.g., if you write something like A = (A|B|C);, then later when
you write A, it’s not clear whether it refers to the symbol A or the subexpression (A|B|C). Instead
try something like alphabet = (A|B|C); and use alphabet in subsequent expressions, or X =
(A|B|C); if X is not in the input alphabet.
Note on nested stars: Regex algorithms can take a long time to run when the number of
nested stars is large. The number of nested stars is the maximum number of ∗
’s (or +’s) that appear
on any root-to-leaf path in the parse tree of the regex. a
∗b
∗ has one nested star, (a

)
∗b
∗ has two
nested stars, and ((a

)
∗b

)
+ has three nested stars. Note that some of these are unnecessary; for
instance (a

)
∗b

is equivalent to a
∗b
∗ None of the problems below require more than two nested
stars; if you have a regex with more, see if it can be simplified by removing redundant stars such
a
x has an even number of a’s, or x has an odd number of b’s, or
x contains both the substrings babb and aabaa 
first appears more:
{x ∈ {0, 1}

| |x| ≥ 3 and the first symbol of x appears at least three times total in x}
repeat near end: {x ∈ {0, 1}

| x[|x| − 5] = x[|x| − 3] }
Assume we start indexing at 1, so that x[|x|] is the last symbol in x, and x[1] is the first.
email: {x ∈ Σ

| x is a syntactically valid email address}
Definition of “syntactically valid email address”: Let Σ = {., @, a, b } contain the
alphabetic symbols a and b,
1 as well as the symbols for period . and “at” @. Syntactically
valid emails are of the form username@host.domain where username and host are nonempty
and may contain alphabetic symbols or ., but never two .’s in a row, nor can either of them
begin or end with a ., and domain must be of length 2 or 3 and contain only alphabetic
symbols. For example, aaba@aaabb.aba and ab.ba@ab.abb.ba are valid email addresses,
but aaabb.aba is not (no @ symbol), nor is .ba@ab.abb.ba (username starts with a .), nor is
1
It’s not that hard to make a regex that actually uses the full alphanumeric alphabet here, but historically we’ve
found that many students’ solutions are correct but use so many subexpressions that they crash the simulator. Using
only two alphabetic symbols a and b reduces this problem, even though it makes the examples more artificial-looking.
2
aaba@aaabb.aaaaaa (domain is too long), nor is aaba@aaabb.a or aaba@aaabb. (domain is
too short), nor is ab..ba@ab.aaabb.aba (two periods in a row), nor is ab.ba@ab@aaabb.aba
(too many @ symbols).
sequence design for DNA nanotechnology: We once designed some synthetic DNA strands
that self-assembled to execute Boolean circuits: https://web.cs.ucdavis.edu/~doty/papers/
#drmaurdsa. We had to be careful designing the DNA sequences to ensure they behaved as
we wanted. Among other constraints, every sequence needed to obey all of the following rules:
• starts with a G or C and ends with a G or a C,
• has an A or T within two indices of each end (i.e., the first, second, or third symbol is
an A or T, and also the last, second-to-last, or third-to-last symbol is an A or T),
• has at most one appearance of C,
• does not have four G’s in a row; this would form something we didn’t want, called a
G-tetrad or G-tetraplex : https://tinyurl.com/yzkq3tzw
Write a regex indicating strings that violate any of the rules above, i.e., it decides the following
language: {x ∈ {A, C, G, T}

| x violates at least one of the rules}.
1.3 CFGs
For each problem submit to Gradescope a .cfg file with a context-free grammar deciding the given
language.
mod length: {x ∈ {a, b}

| |x| ≡ 3 mod 5}
substring: {x ∈ {a, b}

| x contains the substring abba}
equal 0 and 1: {x ∈ {0, 1}

| #(0, x) = #(1, x)}
palindrome: {x ∈ {0, 1}

| x = x
R}
Recall that x
R is the reverse of x.
first or last: {0
i1
j0
k
| i, j, k ∈ N and (i = j or j = k)}
integers: The set of strings that look like nonnegative decimal integers with no leading 0’s. For
example: 0, 1, 2, 3, 10, 11, 12, 21, 100, 99999
expressions: The set of strings that look like arithmetic expressions using nonnegative integers
and the operations +, -, *, /, and parentheses to group terms.
For example, the following are properly formatted arithmetic expressions: 0, 2, 2+30, 2+30*401,
(2+30)*401/(23+0), (((1+2)/3-4)*5+6)*7
The following are not: 02, (2+30, 2+30*401+, (2+30)*401), -4, 2++3, (), 2*(), ((((1+2)*3-4)*5+6)*7
3
2 Written problems
Please complete the written portion of this homework on Gradescope, in the assignment titled
“HW1 written”. There, you will find the problem statements for the written portion. Please type
solutions directly into Gradescope, using appropriate mathematical notation when appropriate,
by typing LATEX in double dollar signs. For example, type $$D = (Q,\Sigma,\delta,s,F)$$ to
display D = (Q, Σ, δ, s, F). By clicking outside the text entry field, you can see a preview of how
the mathematics will render. See the second half of this page for examples: https://hackmd.io/
cmThXieERK2AX_VJDqR3IQ?both#Gradescope-MarkdownLatex
Your written solutions will be checked for completeness but not for correctness. To receive
credit, you must make a serious attempt at all problems.
3 Optional challenge problems
Please read the syllabus for a discussion of optional challenge problems. Briefly, you don’t have to
submit a solution to these, and they aren’t worth any points. But, if you find any interesting, and
if you think you have a solution, please email it directly to me: doty@ucdavis.edu.
1. You showed by a simple counting argument that some language A ⊂ {0, 1}
≤5
cannot be
decided by any DFA with fewer than 9 states. In this problem, we will see how far this can
be pushed.
Step 1 (easy): Devise a single DFA D that can decide any language A ⊂ {0, 1}
≤5 by setting
accept states appropriately. In other words, give Q, s ∈ Q, and δ : Q × {0, 1} → Q so
that, for every A ⊂ {0, 1}
≤5
, there is FA ⊆ Q such that, letting DA = (Q, {0, 1}, δ, s, FA)
be a DFA, we have L(DA) = A. How large is |Q|?
Step 2 (moderate): If you are allowed to modify both the set of accept states and the
transitions, can you make the number of states of D less than 30? In other words, show
that for every language A ⊂ {0, 1}
≤5
, some DFA with at most 30 states decides A.
Step 3 (difficult): What is the smallest number of states needed to decide any language
A ⊂ {0, 1}
≤5
? More precisely, if s(A) is the number of states in the smallest DFA
deciding A, what is max
A⊆{0,1}≤5
s(A)? For this, you might find the Myhill-Nerode Theorem
useful: https://en.wikipedia.org/wiki/Myhill%E2%80%93Nerode_theorem
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代寫GA.2250、代做Python設計程序
  • 下一篇:代發EI會議論文 EI論文發表咨詢
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                久久电影网站中文字幕| 精品国产乱码久久久久久1区2区 | 色先锋资源久久综合| 久久成人免费网| 久久疯狂做爰流白浆xx| 日韩经典一区二区| 天天射综合影视| 日日噜噜夜夜狠狠视频欧美人 | 91精品国产综合久久香蕉的特点 | 午夜欧美在线一二页| 久久精品国产澳门| 一区二区三区免费| 色94色欧美sute亚洲线路一久| 亚洲尤物视频在线| 中文字幕免费不卡| 精品日韩欧美一区二区| 9191成人精品久久| 欧美成人国产一区二区| 欧美一卡在线观看| 国产精品女主播av| 国产精品自拍三区| 久久99精品久久久久久| 美国毛片一区二区| 成人午夜免费视频| 欧美综合一区二区三区| 欧美日韩精品二区第二页| 日韩一区二区三区在线视频| 欧美xxx久久| 亚洲国产成人一区二区三区| 亚洲欧洲99久久| 亚洲一区二区精品久久av| 日本不卡中文字幕| 国产一区二区伦理| 99视频热这里只有精品免费| 欧美日韩中文字幕一区二区| 日韩欧美在线观看一区二区三区| 久久久另类综合| 亚洲精品写真福利| 免费高清在线一区| 久久99国产精品免费网站| a亚洲天堂av| 日韩一卡二卡三卡四卡| 国产精品蜜臀在线观看| 日韩高清中文字幕一区| 成人sese在线| 日韩精品一区二区三区四区| 日韩毛片视频在线看| 蜜臀av性久久久久蜜臀aⅴ| 91在线观看污| 日韩久久免费av| 亚洲一区二三区| 国产福利91精品一区| 91麻豆精品国产91久久久| 亚洲视频在线一区观看| 久久99热99| 欧美三级中文字幕在线观看| 国产精品少妇自拍| 久久精品国产99久久6| 欧美性色综合网| 中文字幕亚洲欧美在线不卡| 免费在线观看视频一区| 色一情一伦一子一伦一区| 欧美国产精品中文字幕| 亚洲成av人**亚洲成av**| 欧美综合视频在线观看| 欧美一区二区三区小说| 成人av动漫网站| 国产精品99久久不卡二区| 欧美在线观看视频一区二区三区| 精品国产成人系列| 亚洲成a人在线观看| 日韩av一区二区三区四区| 国产一区二区三区美女| 粉嫩13p一区二区三区| 欧美剧情电影在线观看完整版免费励志电影 | 日韩午夜精品电影| 国产精品―色哟哟| 久久激情五月激情| aaa欧美色吧激情视频| 日韩免费在线观看| 亚洲高清一区二区三区| 91麻豆蜜桃一区二区三区| 国产精品免费视频网站| 岛国精品一区二区| 欧美国产一区在线| 国产成人综合亚洲网站| 国产天堂亚洲国产碰碰| 国产综合久久久久久鬼色| 日韩一区二区视频| 国内精品写真在线观看| 国产三级精品在线| 成人avav影音| 亚洲已满18点击进入久久| 91成人在线精品| 日日夜夜一区二区| 精品99999| 国产69精品久久久久毛片| 国产精品久久毛片a| 4438x亚洲最大成人网| 日韩视频国产视频| 国产综合色精品一区二区三区| 国产亚洲一本大道中文在线| 成人性生交大片免费看视频在线| 中文字幕在线一区| 欧美在线观看视频一区二区| 奇米色一区二区| 久久久久久久电影| 在线观看视频91| 美女视频黄免费的久久 | 欧美va亚洲va| 国产精品一二三四区| 国产精品国产三级国产aⅴ原创| 成人晚上爱看视频| 亚洲国产日韩在线一区模特| 91精品国产综合久久久蜜臀图片| 国产一区二区三区精品视频| 亚洲三级理论片| 精品国精品国产| 色老汉av一区二区三区| 激情久久五月天| 亚洲综合色噜噜狠狠| 精品黑人一区二区三区久久| 99久久精品情趣| 另类小说图片综合网| 亚洲精选视频在线| 久久久久国产精品麻豆| 欧美亚洲高清一区二区三区不卡| 精品一区二区免费| 亚洲成a人v欧美综合天堂| 国产日韩精品久久久| 91精品在线免费| 在线欧美日韩精品| gogogo免费视频观看亚洲一| 久久99国产乱子伦精品免费| 亚洲地区一二三色| 国产精品美日韩| 久久色.com| 日韩午夜激情电影| 欧美午夜在线一二页| 成人永久看片免费视频天堂| 美女一区二区在线观看| 一二三区精品福利视频| 国产精品久久久久婷婷| 日韩一区二区在线免费观看| 欧美色图激情小说| 欧日韩精品视频| 在线视频欧美精品| 99精品视频在线免费观看| 国产成人一区二区精品非洲| 美女视频一区在线观看| 日韩va欧美va亚洲va久久| 亚洲国产精品久久一线不卡| 精品一区二区三区视频在线观看 | 日韩欧美在线观看一区二区三区| 99在线视频精品| 国产麻豆成人精品| 久久99久久精品| 麻豆精品在线视频| 男女男精品视频| 久久er99热精品一区二区| 免费观看在线综合| 免费人成精品欧美精品| 波多野洁衣一区| 亚洲国产视频网站| 丝袜亚洲另类丝袜在线| 久久精品网站免费观看| 成人午夜精品一区二区三区| 亚洲另类在线视频| 欧美变态口味重另类| 国内成人精品2018免费看| 8x8x8国产精品| 欧美一区二区三区在| 日本怡春院一区二区| 亚洲国产精品影院| 午夜视频久久久久久| 日本成人在线视频网站| 免费看欧美美女黄的网站| 国产精品一区二区在线观看网站| 韩国v欧美v亚洲v日本v| 国产成人在线免费| 99久久99久久精品免费观看| 欧美性受xxxx黑人xyx性爽| 91精品国产综合久久久久久漫画 | 国产·精品毛片| 精品一区二区三区免费| 国产一区二区伦理| 成人a级免费电影| 欧美图区在线视频| 精品少妇一区二区三区在线播放| 久久久亚洲高清| 成人欧美一区二区三区视频网页| 亚洲免费在线观看视频| 日本va欧美va精品发布| av网站一区二区三区| 欧美嫩在线观看| 国产亚洲美州欧州综合国| 亚洲一二三区视频在线观看| 国内成+人亚洲+欧美+综合在线| 91丨porny丨蝌蚪视频| 欧美www视频|