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

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

CCIT4016代做、代寫Python設計編程
CCIT4016代做、代寫Python設計編程

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



Introduction to Data Structures and Algorithms (IDSA, CCIT4016) 
HKU SPACE Community College, 2024-2025, Semester 2 
Assignment 1 (A1)
(15%) 
(Total Marks: 30) 
o Finish this work, based on concepts and techniques learnt in our course. 
o Students should finish reviewing the related course notes and materials, before doing this assignment. 
o Individual work: FINISH THIS WORK ALONE. Student cannot work with others. 
* Plagiarism / Collusion / Shared work with others are not allowed. Zero mark will be given, with 
possible disciplinary action. 
o Students are responsible for ensuring that their files are submitted successfully and properly to SOUL. It 
is recommended to download submitted files for self-check before the deadline. Improper file 
submissions, such as damaged or wrongly sent files, will not be processed or notified by any means. 
o Late Submission is Not Accepted. Zero Mark will be Given. Students should well-plan their time and 
schedule. Finish and submit the assignment well before the deadline. 
o Questions related to program codes are based on Python programming language, unless specified.
o Follow given instructions and guidelines. 
Section A, A1A (10 marks)
Multiple Choice (MC) and Matching Questions, Online (SOUL-Quiz Feature) 
o Identify and select the option of choice that "best" completes the statement, matches the item, or 
answers the question. 
o Number of Attempts Allowed: 2 
o Grading method: Highest Grade 
o Make sure you have successfully completed, "Finished" and submitted before deadline. 
* Attempts must be submitted before time expires, or they are NOT counted. (Zero mark given)
o 5 MC questions and 5 Matching questions. Each question carries the same mark. 
Section B, A1B (20 marks): Programming Tasks
* IMPORTANT: 
o Source code *.py file must start with comments, including the information of individual student 
(student name, student id) as example below, unless specified. E.g. below 
o Modify the given Main testing file M*.py file (if any) to display the information of individual student 
(student name, student id) as example below, unless specified. E.g. below 
=== A1B1, Rectangle Program, by <CHAN Siu Ming> <20004016> === 
... 
...
# A1B1.py, for IDSA A1 
# FINISHED by: <CHAN Siu Ming>, <20004016> 
class Rectangle: # define the class of Rectangle
2 / 5
General requirements (unless further specified): 
o Students should handle special cases, for examples: empty list, one-element list, etc. 
o Proper brief comments are required, at least at the top of each source code file. 
o Proper indentations are required in writing program codes. 
o All related files (including *.py) should be working in the same folder.
o Python list is mainly used to hold data elements as an array in our course and this assessment. 
DO NOT use methods of Python’s list (such as list.append() or list.insert() etc.), 
inheritance in OOP, or other non-taught approaches in our course, unless specified.
Given Materials: 
o This assignment document. 
o Python files A1B1.py and A1B2.py: to be modified and completed by student. 
o Also modify top comments for your STUDENT INFO. 
o DO NOT modify the given portions unless specified, including the given methods if any. 
o Python files MA1B1.py and MA1B2.py: the main files for basic running and testing. 
o DO NOT modify these given main test files, except the STUDENT INFO part.
A1B1 (10 marks)
Develop a Fixed-Size Array-List, with the given Python file A1B1.py. 
o In this part, students are required to implement a Fixed-Size version of Array-List: 
o No need to enlarge the list if it is full. 
o GIVEN an uncompleted Fixed-Size Array-List in A1B1.py (based on the one in our lecture notes, 
AList.py), with implemented methods below: 
GIVEN Operations (Class AList) Description
__init__(): Initiate/create a new Array-List (constructor / initializer) 
* This code sample is in Python-style
sizeL():int Get and return the size of the List (total number of elements) 
getL(pos):elt Get and return the element in position pos without removal 
- If failed, return null/None; e.g. pos is out of range 
insertL(elt,pos): Insert a new element elt into position pos
- If list is full, console display "<FULL>- Failed INSERT"
Do nothing if this task cannot be done, including if pos is out of range 
or other exceptional cases
removeL(pos):elt Remove and return the element elt in position pos
- If failed, return null/None; e.g. pos is out of range 
displayL(): Display all elements of the list in order 
* Remark: pos (position of element in list) starts from 1 in our course (not 0 as index in Python list)
3 / 5
o Complete the Fixed-Size Array-List with the following Extra Operations (methods of the class):
o At least one line of simple comment for each extra operation required
Operations (Class AList) Description 
appendL(elt): Insert/Append a new element elt into the end of the current list 
o If list is full, console display "<FULL>- Failed APPEND"
o Do nothing if this task cannot be done, including if pos is out of 
range or other exceptional cases
searchLastL(elt):int Search & return the position of the last occurrence of an input 
searching element elt. (* Position starts from 1) 
o Return -1 if this task cannot be done, including the searching 
element does not exist in the list.
isEmptyL():bool Check if the list is empty or not 
Return boolean True if the list is empty, otherwise False
isFullL():bool Check if the list is already full or not, for our fixed-size list 
Return True if the list is full, otherwise return False
clearL(): Clear the whole list (remove/delete all elements) 
Sample console display output of executing the main testing program MA1B1.py 
=== A1B1, Fixed-Sized ArrayList, by <Student NAME> <Student ID> === 
--- 0. new AL <CHECK> isFullL()?:False, isEmptyL()?:True 
>>> AList Display(Head/Left), size/last<0>, capacity<4>: 
--- 1. insertL <KABC>-D? 
<FULL>- Failed INSERT 
>>> AList Display(Head/Left), size/last<4>, capacity<4>: 
 > K > A > B > C 
--- 2. appendL: <KAC,K>-P? 
<FULL>- Failed APPEND 
>>> AList Display(Head/Left), size/last<4>, capacity<4>: 
 > K > A > C > K 
------ <CHECK> searchLastL('D'), pos:-1 
------ <CHECK> searchLastL('A'), pos:2 
--- 3. getL(myL.searchLastL(myL.removeL(1))), elt:K 
>>> AList Display(Head/Left), size/last<3>, capacity<4>: 
 > A > C > K 
------ <CHECK> searchLastL('C'), pos:2 
------ <CHECK> searchLastL('P'), pos:-1 
=== Program ends === 
4 / 5
A1B2 (10 marks)
Develop a Doubly-Linked-List, with the given Python file A1B2.py.
o Each node in Doubly-Linked-List has two links: one for the next node as in singly-linked list, the other 
for the previous node. The head node has no previous link and the tail node has no next link. This is 
implemented as a Python class DLNode and given in our Python file.
 
o Some operations could be done efficiently with this Doubly-Linked-List, which require tracing 
backward (the previous node of the current node).
o Given an uncompleted Doubly-Linked-List in A1B2.py (based on the one in our lecture notes, 
LList.py), with implemented methods below:
Given Operations (Class DLList) Description
__init__(): Create and initiate a new Doubly-Linked-List (constructor)
appendDL(elt): Append/Insert element elt as a new tail
displayDL(): Traverse & display node values, starting from head in forward order
displayBwDL(): Traverse & display node values, starting from tail in backward order
o Complete the Doubly-Linked-List with the following Extra Operations (methods of the class):
o At least one line of simple comment for each extra operation required
Operations (Class DLList) Description
getNextFwDL(refElt):elt Get & return (without remove) the next element of a reference 
element refElt, starting from head in forward order 
o Return None if no element can be returned
getPrevBwDL(refElt):elt Get & return (without remove) previous element of reference 
element refElt, starting from tail in backward order
o Return None if no element can be returned
removeNextFwDL(refElt):elt Remove & return the next element elt of a reference element 
refElt, starting from head in forward order
o Return None if no element can be removed and returned
- A B C - headN tailN
5 / 5
Sample console display output of executing the main testing program MA1B2.py 
=== === A1B2, DLList program, by <Student NAME> <Student ID>=== 
--- 1. List with Insert items <8,3,1,2,7,4,9> --- 
>>> DOUBLY-Linked-List Display: > 
 ... head <8>, tail <9>: 
 > 8 > 3 > 1 > 2 > 7 > 4 > 9 
<<< DOUBLY-Linked-List Display, Backwards: << 
 FROM ... tail <9>, head <8> 
 < 9 < 4 < 7 < 2 < 1 < 3 < 8 
------ <CHECK> getPrevBwDL('2'), elt:1 
------ <CHECK> getNextFwDL('9'), elt:None 
------ <CHECK> getNextFwDL('7'), elt:4 
--- 2. removeNextFwDL('4'), elt:9 
>>> DOUBLY-Linked-List Display: > 
 ... head <8>, tail <4>: 
 > 8 > 3 > 1 > 2 > 7 > 4 
<<< DOUBLY-Linked-List Display, Backwards: << 
 FROM ... tail <4>, head <8> 
 < 4 < 7 < 2 < 1 < 3 < 8 
------ <CHECK> getPrevBwDL('8'), elt:None 
------ <CHECK> getNextFwDL('1'), elt:2 
=== Program ends === 
SUBMISSION:
o Check and follow requirements and instructions, including to follow the required naming of files. 
o Run, Debug, Test and Evaluate your program based on the requirements. 
o Submit ALL related .py files to SOUL: 
o A1B1.py, MA1B1.py
o A1B2.py, MA1B2.py
o Do NOT compress/zip or rename the files. Submission work not following requirements may be 
penalized or not be assessed. 
 
~ END ~

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



 

掃一掃在手機打開當前頁
  • 上一篇:關于橙多多客服電話咨詢-橙多多人工客服服務熱線電話
  • 下一篇:金滿滿強制下款怎么辦?金滿滿客服電話服務熱線
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相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;">

                欧美三级三级三级| 亚洲天堂2014| 99久久精品免费看| 毛片基地黄久久久久久天堂| 午夜天堂影视香蕉久久| 亚洲国产中文字幕在线视频综合| 亚洲欧美综合另类在线卡通| 麻豆91免费观看| 久久精品这里都是精品| 亚洲成a人片在线不卡一二三区 | 国产成a人亚洲精| 国产成人一级电影| 成人性生交大片| 欧美中文字幕一区二区三区| 97久久超碰国产精品| 国产sm精品调教视频网站| 国产精品99久| 日韩欧美一级在线播放| 国产91富婆露脸刺激对白| 亚洲码国产岛国毛片在线| 欧美少妇性性性| 精品亚洲成a人| 色综合天天综合网国产成人综合天| 亚洲日韩欧美一区二区在线| 欧美一级艳片视频免费观看| 国产美女在线观看一区| 久久久不卡网国产精品二区| 91.麻豆视频| 欧美日韩一本到| 日本电影欧美片| www.在线成人| 国产成人av一区二区三区在线 | 亚洲天堂成人网| 国产精品成人免费| 欧美精品久久久久久久久老牛影院| 亚洲精品写真福利| 成人欧美一区二区三区视频网页| www亚洲一区| 69堂精品视频| 一本到不卡免费一区二区| 大桥未久av一区二区三区中文| 老汉av免费一区二区三区| 丝袜脚交一区二区| 亚洲成人tv网| 亚洲激情自拍视频| 欧美日韩国产小视频在线观看| 国产精品综合久久| 日韩欧美视频在线| 中文字幕欧美一| 精品视频1区2区| 色哦色哦哦色天天综合| 国产精品国产三级国产普通话三级| 日韩午夜在线影院| 欧美性大战久久久久久久蜜臀| av一二三不卡影片| av成人免费在线观看| 韩国一区二区在线观看| 丁香亚洲综合激情啪啪综合| 亚洲国产精品视频| 日本一区二区三区dvd视频在线| 精品蜜桃在线看| 色综合久久精品| 91蜜桃在线免费视频| av日韩在线网站| av福利精品导航| 欧美天堂一区二区三区| 欧美伊人久久大香线蕉综合69| 欧美精品三级日韩久久| 欧美一区二区三区不卡| 欧美电影精品一区二区| 国产女同互慰高潮91漫画| 亚洲图片欧美激情| 麻豆精品视频在线观看| 激情久久五月天| 一本一道综合狠狠老| 欧美一区二区在线视频| 欧美在线观看你懂的| 日韩视频免费观看高清完整版| 久久亚洲春色中文字幕久久久| 韩日精品视频一区| 亚洲欧美一区二区三区孕妇| 国产精品视频麻豆| 国产精品入口麻豆九色| 午夜激情久久久| 成人午夜激情在线| 欧美色综合网站| 91丝袜国产在线播放| 日韩欧美在线1卡| 亚洲激情网站免费观看| 久久国产精品露脸对白| 色综合久久综合网| 欧美成人aa大片| 日韩理论片一区二区| 久久99精品久久久| 欧洲精品视频在线观看| 欧美精品久久一区| 亚洲人成亚洲人成在线观看图片 | 国产九色sp调教91| 激情av综合网| 欧美天天综合网| 国产亚洲综合av| 日本不卡一区二区三区| 在线免费不卡电影| 国产精品理伦片| 国产乱妇无码大片在线观看| 91精品国产高清一区二区三区 | 成人午夜又粗又硬又大| 欧美日韩日日骚| 亚洲色图.com| 国产激情一区二区三区桃花岛亚洲| 在线播放中文字幕一区| 日韩一区欧美小说| 成人一区二区视频| 久久精品视频一区二区| 日本在线不卡视频| 欧美狂野另类xxxxoooo| 亚洲综合成人在线| 色综合天天在线| 中文字幕av在线一区二区三区| 丝袜亚洲另类欧美综合| 欧美精品自拍偷拍| 一区二区三区日韩在线观看| 日本韩国欧美一区二区三区| 一区二区三区四区不卡视频| 色婷婷久久久综合中文字幕| 国产精品妹子av| 99精品久久久久久| 亚洲欧美电影一区二区| 在线视频综合导航| 亚洲福利视频一区二区| 欧美日本国产视频| 韩日精品视频一区| 中文字幕欧美激情| 色琪琪一区二区三区亚洲区| 亚洲精品国产a久久久久久| 色婷婷久久久亚洲一区二区三区| 中文字幕一区二区三区在线播放| 91在线视频官网| 亚洲乱码国产乱码精品精98午夜| 在线亚洲欧美专区二区| 日韩一级成人av| 日韩久久一区二区| 欧美aaaaaa午夜精品| 成人av电影在线播放| 97精品久久久午夜一区二区三区 | a4yy欧美一区二区三区| 国产精品不卡在线| 色综合久久综合| 亚洲成人综合在线| 欧美成人乱码一区二区三区| 亚洲天堂成人网| 欧美一级久久久久久久大片| 色丁香久综合在线久综合在线观看| 精品毛片乱码1区2区3区| 精品午夜一区二区三区在线观看| 欧美精品一区二区三区蜜桃| 国产高清一区日本| 亚洲欧洲国产日韩| 欧美一区二区三区喷汁尤物| 成人av在线网| 日本免费新一区视频| 中文乱码免费一区二区| 欧美久久高跟鞋激| 国产99久久久国产精品免费看 | 99精品1区2区| 午夜一区二区三区视频| 国产三级三级三级精品8ⅰ区| 日本精品一区二区三区高清| 国产美女在线精品| 午夜精品福利在线| 欧美国产日韩一二三区| 91麻豆精品91久久久久同性| 国产精品系列在线播放| 亚洲国产精品精华液网站| 91精品国产欧美一区二区| 91社区在线播放| 国产做a爰片久久毛片| 婷婷丁香激情综合| 国产日韩亚洲欧美综合| 欧美一区二区三区免费观看视频| aa级大片欧美| 国产91精品欧美| 激情国产一区二区| 日本不卡免费在线视频| 一区二区三区四区激情| 国产精品污网站| www久久精品| 欧美一区二区三区免费在线看 | 欧美日韩久久久一区| 99精品视频一区| 成人黄色一级视频| 国产麻豆9l精品三级站| 偷拍一区二区三区四区| 亚洲二区视频在线| 亚洲久草在线视频| 中文字幕综合网| 亚洲欧美区自拍先锋| 中文字幕五月欧美| 五月天国产精品| 亚洲人成影院在线观看|