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

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

COMP9021代做、代寫Python編程語言
COMP9021代做、代寫Python編程語言

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



Assignment 2 version 1.2
COMP9021, Trimester 1, 2025
1 General matters
1.1 Aim
The purpose of the assignment is to:
• develop your problem solving skills;
• design and implement the solutions to problems in the form of medium sized Python programs;
• design and implement an interface based on the desired behaviour of an application program;
• organise code into classes and implement special methods;
• possibly practice using the re and numpy modules;
• optionally practice the design and implementation of search techniques, with recursion as a good
approach.
1.2 Submission
Your program will be stored in a file named tangram.py. After you have developed and tested your
program, upload it using Ed (unless you worked directly in Ed). Assignments can be submitted more
than once; the last version is marked. Your assignment is due by April 28, 11:59am.
1.3 Assessment
The assignment is worth 13 marks, plus 5 bonus marks. It is going to be tested against a number of
inputs. For each test, the automarking script will let your program run for 30 seconds.
Assignments can be submitted up to 5 days after the deadline. The maximum mark obtainable reduces
by 5% per full late day, for up to 5 days. Thus if students A and B hand in assignments worth 12 and 11,
both two days late (that is, more than 24 hours late and no more than 48 hours late), then the maximum
mark obtainable is 11.7, so A gets min(11.7, 12) = 11.7 and B gets min(11.7, 11) = 11.
The outputs of your programs should be exactly as indicated.
Important notice:
• The bonus mark is an option only for programs submitted by the deadline, NOT for
programs submitted within 5 days after the deadline.
• The final mark for the course is capped to 100; the bonus mark cannot let you score more than 100
in the course.
1.4 Reminder on plagiarism policy
You are permitted, indeed encouraged, to discuss ways to solve the assignment with other people. Such
discussions must be in terms of algorithms, not code. But you must implement the solution on your
own. Submissions are routinely scanned for similarities that occur when students copy and modify other
people’s work, or work very closely together on a single implementation. Severe penalties apply.
1
2 Tangram puzzles and the TangramTikz package
See Tangram for an overview on Tangram puzzles. All shapes under consideration consist of a unique
connected component without inside hole.
We play with 2 large triangles, a medium triangle, 2 small triangles, a square and a parallelogram of
the following sizes in centimetres, first positioned as shown, the red dot playing the role of an “anchor”.
2
2
2
1
1
1
1
1
1
1
Each piece can be flipped about the vertical line that goes through the anchor, flipped about the
horizontal line that goes through the anchor, and rotated about its anchor (as if it was a pivot) by a
multiple of 45 degrees, before being moved to let the anchor be positioned at given x- and y-coordinates.
We work with .tex files, any of which can be given as argument to pdflatex to generate a .pdf file.
• Here is a .tex file for the solved Tangram of a kangaroo, and here is the associated pdf file.
• Here is a .tex file for the solved Tangram of a cat, and here is the associated pdf file.
• Here is a .tex file for the solved Tangram of a goose, and here is the associated pdf file.
More precisely, the .tex files we work with have the following structure:
\documentclass{standalone}
\usepackage{TangramTikz}
\begin{document}
\begin{EnvTangramTikz}
...
\end{EnvTangramTikz}
\end{document}
Between \begin{EnvTangramTikz} and \end{EnvTangramTikz} are 7 lines, one for each piece, that read
as:
\PieceTangram[TangSol](...,...){...}
or as
\PieceTangram[TangSol]<...>(...,...){...}
... between the curly braces at the end is one of
2
• TangGrandTri for any of the two large triangles,
• TangMoyTri for the medium triangle,
• TangPetTri for any of the two small triangles,
• TangCar for the square, and
• TangPara for the parallelogram.
Both ... within the pair of parentheses are for the x- and y-coordinates of the point where the anchor
of the piece has to be moved, after the piece has been possibly flipped and rotated. These coordinates
are of the form a, a+sqrt(2), a-sqrt(2), a+b*sqrt(2), a-b*sqrt(2), sqrt(2), +sqrt(2), -sqrt(2)
or a*sqrt(2) where a and b are integers or floating point numbers with b being 0 or strictly positive.
Floating point numbers have a dot in their representation. When positive, a can start with + whereas
b can’t. Floating point numbers can start with any number of 0s, and 0 before the dot is optional in
floating point numbers whose absolute value is smaller than 1 (essentially, any sequence of digits and one
dot that Python accepts as a floating point literal is valid).
... between the less than and greater than signs is for one, two or three distinct options, consecutive
options being separated by a comma. The possible options are:
• xscale=-1, to flip the piece so left becomes right and right becomes left,
• yscale=-1, to flip the piece so top becomes bottom and bottom becomes top, and
• rotate=_ with _ an integer that is a multiple of 45 (positive values are for anticlockwise rotation,
negative values are for clockwise rotation).
The options can appear in any order; their sequence determines the order in which the associated trans formations are applied to the piece. It is always possible to have either no option, or a rotation, or an
x-flip (that is, a flip about the vertical line that goes through the anchor), or a rotation followed by an
x-flip.
In the whole .tex file, there can be blank lines and whitespace (space and tab characters) between
tokens everywhere. Also, the leftmost occurrence of a % marks the beginning of a comment that runs
from this symbol included all the way to the end of the physical line, including the \n character.
3
3 The tasks to perform
Your program will allow TangramPuzzle objects to be created from .tex files that you can assume are
stored in the working directory, and whose contents satisfy all conditions spelled out in Section 2.
3.1 Reporting on the transformations applied to each piece (3 marks)
A TangramPuzzle object has a transformations attribute, whole value is a dictionary with 7 keys,
one for each piece. The keys are 'Large triangle 1', 'Large triangle 2', 'Medium triangle',
'Small triangle 1', 'Small triangle 2', 'Square' and 'Parallelogram'. The order of the large
and small triangles are given by the order they have in the .tex file. More generally, the keys of the
dictionary are created in the order of the corresponding pieces in the .tex file. The value for each key is
itself a dictionary whose keys are 'rotate' and 'xflip' . The value for 'rotate' is an integer between
0 included and 360 excluded. The value for 'xflip' is either True or False. So the transformation
applied to each piece is normalised, consisting of first a rotation (maybe equal to 0) possibly followed by
an x-flip.
Here is a possible interaction.
3.2 Reporting on the coordinates of the vertices (4 marks)
Printing out a TangramPuzzle object outputs for each piece, the coordinates of the vertices.
• Pieces are listed from the ones whose leftmost topmost vertices are highest to the ones whose leftmost
topmost vertices are lowest. When the heights of the leftmost topmost vertices of two pieces are
the same, the piece that is to the left of the other piece is listed first. Essentially, the plane is
scanned from top to bottom and from left to right and when the leftmost topmost vertex of a piece
is encountered, the piece is listed.
• Coordinates have the simplest possible form, as shown in the provided examples here. Binary +
and - have a space on both sides, there is no addition of 0, there is no multiplication by 0, there
is no multiplication by 1 or -1, fractions are simplified, integers are used instead of fractions whose
denominator would be 1, and fractions are surrounded by parentheses when followed by √2 to avoid
that it be wrongly believed that √
2 is multiplied by the denominator.
• For a given piece, the enumeration of vertices proceeds clockwise starting from the leftmost topmost
vertex.
3.3 Creating a file to represent the pieces of the solved puzzle (3 marks)
The TangramPuzzle class has a draw_pieces() method that takes the name of a .tex file as argument,
to represent a solved tangram using the tikz package rather than the TangramTiks package, easily taking
advantage of what has been done for the previous part. The order of the pieces, the order of the vertices
of a given piece, are the same as for the previous part. The origin of the plane is represented by a red dot.
The grid in the background extends in such a way that there is at least one square (of 5mm by 5mm)
and strictly less than 2 squares above the topmost vertex, to the right of the rightmost vertex, below
the bottommost vertex and to the left of the leftmost vertex. For example: if the x-coordinate of the
rightmost vertex of the shape is equal to 3.01 or 3.5, then the grid extends to the right to an x-coordinate
of 4; if the x-coordinate of the rightmost vertex of the shape is equal to 3.51 or 4, then the grid extends
to the right to an x-coordinate of 4.5.
Executing
$ python3
...
>>> from tangram import *
4
>>> TangramPuzzle('kangaroo.tex').draw_pieces('kangaroo_pieces_on_grid.tex')
>>> TangramPuzzle('cat.tex').draw_pieces('cat_pieces_on_grid.tex')
>>> TangramPuzzle('goose.tex').draw_pieces('goose_pieces_on_grid.tex')
produces this, this and this .tex files, respectively, with this, this and this associated .pdf files.
It is advisable to make sure that the spaces in the .tex files produced during the interaction are
exactly as shown. Still, whitespace will be ignored for assessment purposes, but of course, all other
nonspace characters have to be exactly the same, character for character, with all lines in the same order.
3.4 Creating a file to represent the outline of the solved puzzle (3 marks)
The TangramPuzzle class has a draw_outline() method that takes the name of a .tex file as argument,
to represent a solved tangram by drawing the outline of its shape as opposed to each piece, starting
from the leftmost topmost vertex and moving in a clockwise direction. Straight line segments extend as
much as possible between vertices. Again, the origin is represented by a red dot. Again, the grid in the
background extends in such a way that there is at least one square (of 5mm by 5mm) and strictly less
than 2 squares above the topmost vertex, to the right of the rightmost vertex, below the bottommost
vertex and to the left of the leftmost vertex.
Executing
$ python3
...
>>> from tangram import *
>>> TangramPuzzle('kangaroo.tex').draw_outline('kangaroo_outline_on_grid.tex')
>>> TangramPuzzle('cat.tex').draw_outline('cat_ouline_on_grid.tex')
>>> TangramPuzzle('goose.tex').draw_outline('goose_outline_on_grid.tex')
produces this, this and this .tex files, respectively, with this, this and this associated .pdf files.
Again, it is advisable to make sure that the spaces in the .tex files produced during the interaction
are exactly as shown. Still, whitespace will be ignored for assessment purposes, but of course, all other
nonspace characters have to be exactly the same, character for character, with all lines in the same order.
3.5 Solving a puzzle (5 bonus marks)
A function solve_tangram_puzzle() takes a file name as argument and returns a TangramPuzzle object,
making the following interaction successful:
$ python3
...
>>> from tangram import *
>>> solve_tangram_puzzle('kangaroo_outline_on_grid.tex').draw_pieces('solved_kangaroo.tex')
>>> solve_tangram_puzzle('cat_outline_on_grid.tex').draw_pieces('solved_cat.tex')
>>> solve_tangram_puzzle('goose_outline_on_grid.tex').draw_pieces('solved_goose.tex')
>>> ^D
$ diff kangaroo_pieces_on_grid.tex solved_kangaroo.tex
$ diff cat_pieces_on_grid.tex solved_cat.tex
$ diff goose_pieces_on_grid.tex solved_goose.tex


請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp







 

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP10002、代做C++編程設計
  • 下一篇:代做ISYS1001、代寫C++,Java程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    99在线热播| 热久久视久久精品18亚洲精品| 欧美精品九九久久| 日本亚洲导航| 国产一区二区三区乱码| 国产成人精品久久亚洲高清不卡 | 欧美精品在线免费观看| 色阁综合av| 国产欧美 在线欧美| 日韩在线免费观看视频| 中文字幕中文字幕在线中一区高清 | 久久久久久久久久久久久9999| 国产精品久久久久久超碰| 五月天国产一区| 国产麻豆日韩| 国产精品久久久久久免费观看| 日本精品一区二区三区视频| 国产乱淫av片杨贵妃| 久久视频精品在线| 日本一道本久久| 91精品国产乱码久久久久久蜜臀 | 亚洲精品免费av| 国产伦精品一区二区三区高清| 国产成人精品一区二区在线| 亚洲7777| 99九九视频| 中文字幕一区二区三区精彩视频| 国内精品久久久久久影视8 | 日韩欧美一区二区视频在线播放| 国产精国产精品| 中文字幕综合在线观看| 精品视频无码一区二区三区| 久激情内射婷内射蜜桃| 日日夜夜精品网站| 91精品国产99久久久久久红楼| 米奇精品一区二区三区在线观看| 黄色a级片免费看| 久久精品二区| 日产国产精品精品a∨| 99久久伊人精品影院| 欧美激情第6页| 国产伦精品一区二区| 欧美久久久精品| 国产免费观看久久黄| 欧美人与性动交| 国产精品羞羞答答| 亚洲一区二区三区精品视频 | 亚洲乱码一区二区三区三上悠亚 | 成人在线免费观看一区| 欧美大片欧美激情性色a∨久久| 国产亚洲天堂网| 美女视频久久黄| 高清在线观看免费| 亚洲一二三区精品| 国产精品99久久久久久www| 色噜噜狠狠一区二区三区| 久久久亚洲精品视频| 欧美一区二区三区艳史| 国产爆乳无码一区二区麻豆| 日本高清久久一区二区三区| 国产精品88久久久久久妇女| 日韩.欧美.亚洲| 日韩亚洲精品视频| 欧美日韩一区二区视频在线 | 日本高清+成人网在线观看| 久久精品视频16| 欧美亚洲第一区| 久久夜色精品国产亚洲aⅴ| 国产日产欧美a一级在线| 亚洲图片欧洲图片日韩av| 国产精品18毛片一区二区| 人妻有码中文字幕| 国产精品久久久久久久久久三级| 国产日韩一区欧美| 婷婷视频在线播放| 久久精品夜夜夜夜夜久久| 国产免费裸体视频| 亚洲色图自拍| 色偷偷88888欧美精品久久久 | 不卡中文字幕av| 91国产丝袜在线放| 青青草成人免费在线视频| 国产精品-区区久久久狼| 国产区精品视频| 无码人妻精品一区二区蜜桃百度 | 日产精品久久久一区二区| 久久久久久久久久久99| 国产主播一区二区三区四区| 亚洲黄色网址在线观看| 久久亚洲午夜电影| 国产综合中文字幕| 日本一区二区视频| 欧美精品一二区| 久久99影院| 国产精品永久免费观看| 欧美亚洲在线观看| 亚洲一区精品电影| 国产精品美女主播在线观看纯欲| 91精品久久久久久蜜桃| 欧美日韩午夜爽爽| 亚洲欧洲精品在线| 久久久精品国产亚洲| 99国产精品久久久久老师| 国内精品视频免费| 日本精品中文字幕| 亚洲精品偷拍视频| 久久国产精品免费视频| 久久久久久久久久久久久久久久久久av| 国产内射老熟女aaaa| 欧美丰满熟妇xxxxx| 性色av一区二区咪爱| 精品国产中文字幕| 久久久精品一区二区| 久久天天狠狠| 国产伦精品一区二区三区视频黑人| 欧美专区日韩视频| 一道精品一区二区三区| 国产精品男人的天堂| 久久国产精品久久精品国产| 成人精品一区二区三区| 免费观看美女裸体网站| 青青视频在线播放| 日日碰狠狠躁久久躁婷婷| 欧美激情伊人电影| 国产精品久久久久久影视| 日韩一区二区欧美| 久久久免费在线观看| www污在线观看| 成人综合视频在线| 国产日韩欧美日韩| 黄色一级免费大片| 日本一区二区三区视频在线播放 | 国产一区二区在线免费| 日韩av免费电影| 精品国产免费人成电影在线观...| 久久国产欧美精品| 99精品国产高清一区二区| 国产日韩欧美黄色| 免费拍拍拍网站| 欧美亚洲一二三区| 日本久久中文字幕| 日本婷婷久久久久久久久一区二区 | 日本精品久久久久中文字幕| 欧美成人精品影院| 俺去了亚洲欧美日韩| 91久久精品久久国产性色也91| 国产日韩欧美一区二区| 国产色一区二区三区| 麻豆成人在线播放| 欧美牲交a欧美牲交aⅴ免费真| 日本一本草久p| 亚洲在线免费视频| 中文字幕乱码人妻综合二区三区 | 日韩av大片在线| 日本久久久久亚洲中字幕| 日韩亚洲一区在线播放| 日日碰狠狠躁久久躁婷婷| 亚洲欧美影院| 日本最新一区二区三区视频观看| 日日夜夜精品网站| 日韩一二区视频| 欧美日韩国产精品激情在线播放 | 亚洲精品一卡二卡三卡四卡 | 91久久久一线二线三线品牌| 99久热re在线精品视频| 91av视频在线免费观看| 91成人综合网| 久久婷婷五月综合色国产香蕉 | 国产av无码专区亚洲精品| 国产精品 日韩| 久久久婷婷一区二区三区不卡 | 国产精品一区二区三区免费| 97国产精品久久| 久久久之久亚州精品露出| 久久久噜久噜久久综合| 国产精品三级美女白浆呻吟| 国产精品视频久久| 欧美精品日韩www.p站| 在线免费一区| 日韩av免费一区| 欧美日韩在线成人| 国产视频精品网| 91精品国自产在线观看| 日韩在线视频国产| 久久中文久久字幕| 亚洲一区二区三区毛片| 奇米888一区二区三区| 国产日韩在线一区| 久久精品中文字幕一区二区三区| 色999日韩欧美国产| 欧美理论电影在线观看| 亚洲最大成人网色| 日本va中文字幕| 国产女精品视频网站免费| 国产国语videosex另类| 久久中文久久字幕| 日韩av三级在线| 精品视频一区二区| 日韩中文字幕网| 中文字幕乱码一区二区三区|