国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫COMP9021object-oriented Python  程序
代寫COMP9021object-oriented Python  程序

時間:2025-11-08  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Assignment 2
COMP9021, Trimester 3, 2025
1 General matters
1.1 Aim
The purpose of the assignment is to:
• develop object-oriented Python programs with proper exception handling;
• parse and analyse combinatorial structures;
• generate TikZ/LaTeX diagrams programmatically;
• handle both small and complex structures efficiently.
1.2 Submission
Your program should be stored in a file named arches.py, optionally together with additional files. After
developing and testing your program, upload it via Ed (unless you worked directly in Ed). Assignments
can be submitted multiple times; only the last submission will be graded. Your assignment is due on
November 24 at 11:59am.
1.3 Assessment
The assignment is worth 13 marks and will be tested against multiple inputs. For each test, the au tomarking script allows your program to run for 30 seconds.
Assignments may be submitted up to 5 days after the deadline. The maximum mark decreases by 5% for
each full late day, up to a maximum of five days. For example, if students A and B submit assignments
originally worth 12 and 11 marks, respectively, two days late (i.e., more than 24 hours but no more than
48 hours late), the maximum mark obtainable is 11.7. Therefore, A receives min(11.7, 12) = 11.7 and B
receives min(11.7, 11) = 11.
Your program will generate a number of .tex files. These can be given as arguments to pdflatex to
produce PDF files. Only the .tex files will be used to assess your work, but generating the PDFs should
still give you a sense of satisfaction. The outputs of your programs must exactly match the expected
outputs. You are required to use the diff command to identity any differences between
the .tex files generated by your program and the provided reference .tex files. You are
responsible for any failed tests resulting from formatting discrepancies that diff would have
detected.
1.4 Reminder on plagiarism policy
You are encouraged to discuss strategies for solving the assignment with others; however, discussions
must focus on algorithms, not code. You must implement your solution independently. Submissions are
routinely scanned for similarities that arise from copying, modifying others’ work, or collaborating too
closely on a single implementation. Severe penalties apply.
1
2 Open Meanders
2.1 Background
An open meander is a combinatorial structure represented as a non-self-intersecting curve that crosses a
horizontal line of points, forming arches above and below the line. They can be described by permutations
with specific constraints.
Formally, let (a1, a2, . . . , an) be a permutation of {1,…, n} with n ≥ 2. Each integer corresponds to a
distinct point on a fixed horizontal line. The permutation defines a sequence of arches as follows:
• The first arch is an upper arch, drawn above the line.
• Subsequent arches alternate between upper and lower positions, forming a valid open meander.
• Each arch connects two consecutive points ai and ai+1 in the permutation. The orientation of each
arch depends on the relative order of these points:
– An arch is drawn from left to right if ai < ai+1.
– An arch is drawn from right to left if ai > ai+1.
• Arches on the same side do not intersect.
The collection of upper and lower arches can be represented symbolically using extended Dyck words—
one for each side of the line:
• ( corresponds to the left endpoint of an arch.
• ) corresponds to the right endpoint of an arch.
• 1 represents an end of the curve (a free endpoint) that lies on that side.
The position of the endpoints depends on the parity of n:
• For even n, both ends of the curve lie below the line.
• For odd n, one end lies above and the other below the line.
Each extended Dyck word therefore encodes the complete structure of the arches on its respective side,
though only together do the two sides represent the full open meander.
2.2 Examples
For a first example, consider the permutation (2, 3, 1, 4) and the corresponding generated diagram open_me anders_1.pdf.
• Upper arches extended Dyck word: (())
• Lower arches extended Dyck word: (1)1
For a second example, consider the permutation (1, 10, 9, 4, 3, 2, 5, 8, 7, 6) and the corresponding generated
diagram open_meanders_2.pdf.
2
• Upper arches extended Dyck word: (()((())))
• Lower arches extended Dyck word: 1(())1()()
For a third example, consider the permutation (5, 4, 3, 2, 6, 1, 7, 8, 13, 9, 10, 11, 12) and the corresponding
generated diagram open_meanders_3.pdf.
• Upper arches extended Dyck word: (()())()(()1)
• Lower arches extended Dyck word: ((()1))(()())
2.3 Requirements
Implement in arches.py a class OpenMeanderError(Exception) and a class OpenMeander.
Objects of type OpenMeander are created with OpenMeander(a_1, a_2, ..., a_n), where the arguments
form a permutation of {1,…, n} for some n ≥ 2. You may assume that all arguments are integers.
• If the arguments do not form a permutation of {1,…, n} for some n ≥ 2, raise
OpenMeanderError('Not a permutation of 1, ..., n for some n ≥ 2').
• If they do not define a valid open meander, raise
OpenMeanderError('Does not define an open meander').
Implement in OpenMeander three attributes:
• extended_dyck_word_for_upper_arches, a string representing the upper arches;
• extended_dyck_word_for_lower_arches, a string representing the lower arches;
• draw(filename, scale=1), a method that generates a TikZ/LaTeX file drawing the open meander.
No error checking is required in the implementation of draw(filename, scale=1). You may assume that
filename is a valid string specifying a writable file name, and that scale is an integer or floating-point
number (typically chosen so that the resulting picture fits on a page).
An example interaction is shown in open_meanders.pdf.
Carefully study the three example .tex files. Note that the horizontal baseline extends one unit beyond
each end of the curve. Also note that the scale common to x and y, as well as the values for radius, are
displayed as floating-point numbers with a single digit after the decimal point. The length of the ends of
strings is computed as half of the scale of x and y, and is also displayed as a floating-point number with
a single digit after the decimal point.
3 Dyck Words and Arch Diagrams
3.1 Background
A Dyck word is a balanced string of parentheses representing a system of nested arches above a horizontal
line. The depth of an arch is the number of arches it is nested within, providing a way to analyse the
hierarchical structure.
3
For example, the Dyck word (()(()(()))) contains arches of depth 0, 1, 2, and 3. Dyck words can be
visualised as arches drawn above a horizontal line, with nesting reflected in the vertical stacking of arches.
Unlike open meanders, Dyck words involve only one side of arches (above the line) and do not include
endpoints represented by 1. They provide a simplified context for studying nesting depth and arch
diagrams, and arches can optionally be visually distinguished by color according to their depth.
When colouring is applied, the following sequence is used: Red, Orange, Goldenrod, Yellow, LimeGreen,
Green, Cyan, SkyBlue, Blue, Purple. If the maximum depth exceeds 9, the sequence wraps around. For
example, depth 10 would use Red again, depth 11 Orange, etc.
3.2 Examples
For a first example, consider the Dyck word (((((((((((((()))))))))))))) and the corresponding
generated diagrams, drawn_dyck_word_1.pdf and coloured_dyck_word_1.pdf.
• There is 1 arch of depth 0.
• There is 1 arch of depth 1.
• There is 1 arch of depth 2.
• There is 1 arch of depth 3.
• There is 1 arch of depth 4.
• There is 1 arch of depth 5.
• There is 1 arch of depth 6.
• There is 1 arch of depth 7.
• There is 1 arch of depth 8.
• There is 1 arch of depth 9.
• There is 1 arch of depth 10.
• There is 1 arch of depth 11.
• There is 1 arch of depth 12.
• There is 1 arch of depth 13.
For a second example, consider the Dyck word (()(()(()))) and the corresponding generated diagrams,
drawn_dyck_word_2.pdf and coloured_dyck_word_2.pdf.
• There are 3 arches of depth 0.
• There is 1 arch of depth 1.
• There is 1 arch of depth 2.
• There is 1 arch of depth 3.
For a third example, consider the Dyck word ((()())(()(()()))) and the corresponding generated
diagrams, drawn_dyck_word_3.pdf and coloured_dyck_word_3.pdf.
4
• There are 5 arches of depth 0.
• There are 2 arches of depth 1.
• There is 1 arch of depth 2.
• There is 1 arch of depth 3.
For a fourth example, consider the Dyck word ((()(()())(()(()(())))((()()))()(()()))) and the
corresponding generated diagrams, drawn_dyck_word_4.pdf and coloured_dyck_word_4.pdf.
• There are 11 arches of depth 0.
• There are 4 arches of depth 1.
• There are 2 arches of depth 2.
• There is 1 arch of depth 3.
• There is 1 arch of depth 4.
• There is 1 arch of depth 5.
3.3 Requirements
Implement in arches.py a class DyckWordError(Exception) and a class DyckWord.
Objects of type DyckWord are created with DyckWord(s), where the argument s is a nonempty string of
parentheses. You may assume that the argument is a string.
• If the argument is the empty string, raise
DyckWordError('Expression should not be empty').
• Otherwise, if the argument contains characters other than parentheses, raise
DyckWordError("Expression can only contain '(' and ')'").
• Otherwise, if the string is not balanced, raise
DyckWordError('Unbalanced parentheses in expression').
Implement in DyckWord three attributes:
• report_on_depths(), a method that outputs the number of arches at each depth, ordered from
smallest to largest depth;
• draw_arches(filename, scale=1), a method that generates a TikZ/LaTeX file drawing the arches;
• colour_arches(filename, scale=1), a method that generates a TikZ/LaTeX file drawing the
arches coloured according to their depth.
5
No error checking is required in the implementation of both methods. You may assume that filename
is a valid string specifying a writable file name, and that scale is an integer or floating-point number
(typically chosen so that the resulting picture fits on a page).
An example interaction is shown in dyck_words.pdf.
Carefully study the eight example .tex files (four for drawing arches, four for colouring arches). Note
that the horizontal baseline extends one unit beyond the leftmost and rightmost arches. Note that the
scale common to x and y is displayed as a floating-point number with a single digit after the decimal
point. Arches are drawn from the leftmost left end to the rightmost left end. Arches are coloured
from largest depth to smallest depth, and for arches of the same depth, from leftmost left end to
rightmost left end.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP3020J encryptors and decryptors 程序&#160;
  • 下一篇:代寫comp3211程序代做 &#160;IoT Framework&#160;
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产夫妻自拍一区| 亚洲欧美日韩在线综合| 国产精品自拍合集| 精品一区二区三区国产| 欧美中日韩在线| 欧洲久久久久久| 日韩精品一区中文字幕| 日本免费一区二区三区视频观看| 国产日韩欧美亚洲一区| 女女同性女同一区二区三区91| 国产成人看片| 久99久视频| 国产成人91久久精品| 久久久com| 97成人精品视频在线观看| 三年中文高清在线观看第6集| 色偷偷av一区二区三区| 久久久婷婷一区二区三区不卡| 人人澡人人澡人人看欧美| 亚洲欧美国产一区二区| 偷拍视频一区二区| 成人做爰www免费看视频网站| 久久久国产91| 国产精品久久久久久久久久久久| 国产午夜精品在线| 国产免费一区二区三区在线观看| 性一交一乱一伧国产女士spa | 天天摸天天碰天天添| 亚洲不卡中文字幕| 日韩欧美亚洲区| 欧美日韩免费高清| 国产一二三区在线播放| 国产精品一区电影| 久久亚洲精品无码va白人极品| 国产在线观看欧美| 国产伦精品一区二区三区免| 91精品国产成人www| 国产成人精品久久亚洲高清不卡| 国产一区二区三区奇米久涩| 成人在线观看a| 久久综合九九| 久久久精品欧美| 一级特黄妇女高潮| 品久久久久久久久久96高清 | 欧美专区在线观看| 蜜桃91精品入口| www日韩在线观看| 久激情内射婷内射蜜桃| 国产精品极品美女在线观看免费| 久久国产精品久久| 久久综合88中文色鬼| 天天摸天天碰天天添| 国模一区二区三区私拍视频| 91成人福利在线| 国产精品视频网站在线观看| 欧美巨大黑人极品精男| 视频一区不卡| 国产综合18久久久久久| 国产高清自拍99| 中文精品无码中文字幕无码专区 | 国产成人亚洲综合无码| 精品国产欧美成人夜夜嗨| 在线一区日本视频| 欧美精品二区三区四区免费看视频| 视频一区亚洲| 国内精品视频在线播放| 久久香蕉视频网站| 久久福利网址导航| 欧美在线不卡区| 91久久国产综合久久91精品网站| 国产性生交xxxxx免费| 国产国语videosex另类| 欧美成人中文字幕| 日本电影一区二区三区| 97久久国产精品| 久久伊人91精品综合网站| 日韩av高清| 91精品在线观| 在线国产99| 国产乱人伦精品一区二区三区| 国产乱人伦真实精品视频| 九色综合婷婷综合| 五月天婷亚洲天综合网鲁鲁鲁| 视频一区亚洲| 国产欧美va欧美va香蕉在线| 国产精品入口免费视频一| 奇米影视首页 狠狠色丁香婷婷久久综合 | 精品免费二区三区三区高中清不卡| 国产精品久久久久9999| 日韩欧美视频免费在线观看| 7777免费精品视频| 色综合久久久888| 国产亚洲欧美在线视频| 国产精品三级在线| 欧美一级黄色影院| 国产激情在线观看视频| 日韩在线第三页| 国产精品50p| 天天好比中文综合网| 国产精品777| 亚洲一区二区三区sesese| 粉嫩av一区二区三区天美传媒| 国产精品a久久久久久| 欧美亚洲一二三区| 国内精品久久久久久久久| 免费久久久久久| 国产精品视频xxx| 欧美在线视频免费| 久久精品国产精品| 91精品综合视频| 亚洲在线观看一区| 欧美一区激情视频在线观看| 日韩中文字幕久久| 欧美激情一区二区三区高清视频| 欧美xxxx18性欧美| 久精品免费视频| 欧美激情一级欧美精品| 视频一区视频二区视频三区视频四区国产| 久久福利视频网| 成人精品在线视频| 欧美丰满熟妇xxxxx| 亚洲一区二区三区视频| 波霸ol色综合久久| 久久综合色视频| 久草综合在线观看| 国产精品午夜av在线| 国产一区二区视频免费在线观看 | 久久久久久精| 精品一区二区三区日本| 日韩xxxx视频| 国产99久久精品一区二区 夜夜躁日日躁 | 色综合久久天天综线观看| 精品国产拍在线观看| 久久久久久久久久久av| 99免费视频观看| 国产精品自拍合集| 国内精品伊人久久| 黄色三级中文字幕| 人妻内射一区二区在线视频| 亚洲午夜精品福利| 久久国产视频网站| 久久久久久久久久国产| 国产日韩欧美中文| 国产欧美日韩视频| 国产欧美久久久久久| 黄色一级片国产| 欧美精品电影在线| 九九久久精品一区| 国产精品久久成人免费观看| 国产精品视频区1| 一本色道婷婷久久欧美| 亚洲一区二区三区免费看| 欧美在线视频网站| 91久久久一线二线三线品牌| 精品欧美日韩在线| 国产偷人视频免费| 国产乱码一区| 国产精品人人做人人爽| 俺也去精品视频在线观看| 久久久久久网址| 久久精品国产免费观看| 久久精品夜夜夜夜夜久久| 国产精品手机在线| 国产精品流白浆视频| 久久99久久亚洲国产| 久久夜色精品国产欧美乱| 少妇大叫太大太粗太爽了a片小说| 亚洲淫片在线视频| 国产精品欧美激情| 岛国视频一区| 久久久久久久久久国产精品| 日韩美女免费观看| 欧美有码在线视频| 国产精品久久久久av| 久久精品综合一区| 91久久久久久久久久久久久| 蜜桃精品久久久久久久免费影院| 日韩在线视频中文字幕| 97久久精品午夜一区二区| 免费拍拍拍网站| 日韩视频第二页| 色综合久久av| 日本一区二区三区四区高清视频| 日韩亚洲欧美成人| 国产不卡在线观看| 久久久女女女女999久久| 国产伦精品一区二区三区| 欧美激情国产精品日韩| 日韩高清国产精品| 日韩在线三区| 欧美一区二区三区免费视| 亚洲精蜜桃久在线| 午夜精品久久久内射近拍高清| 久久久久久久国产| 69久久夜色精品国产69乱青草| 欧美一级免费视频| 无码人妻h动漫| 污视频在线免费观看一区二区三区| 国产成人精品免费看在线播放| 日本高清不卡三区|