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

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

代做CSCI203、代寫Python/c++編程語言

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



CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 1 of 9
Assignment 2 (20% of total marks)
Due date: 15 February 2024, Thursday
Scope:
The tasks of this assignment cover the data structure and algorithm. The assignment
covers the topics discussed in topics 3 and 4.
The assignment is divided into two parts – Part One covers the theoretical aspect of the
materials discussed during classes, and Part Two covers the practicality of the concepts.
The total mark for Part One is 75, and Part Two is 25.
Assessment criteria:
Marks will be awarded for:
 Correct,
 Comprehensive, and
 Appropriate
application of the materials covered in this subject.
Marks:
Total mark: 100
Weightage: 20% of total subject mark
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 2 of 9
Assignment Specification:
Part A: (75 marks)
Question 1 (25 marks)
a. The INORDER traversal output of a binary tree is A,B,N,O,R,M,A,L,L,Y and the
PREORDER traversal output of the same tree is Y,N,A,B,M,O,R,L,A,L. Construct the
tree and determine the output of the POSTORDER traversal output. (6.0 marks)
b. Given the following undirected graph:
Represent the graph as:
(i) Adjacency matrix (3.0 marks)
(ii) Adjacency list (3.0 marks)
(iii) Incidence matrix (3.0 marks)
c. Starting with an empty 2-4 tree, construct a 2-4 tree with the following keys. Show
the major working steps.
14, 12, 11, 13, 16, 15
(10.0 marks)
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 3 of 9
Question 2 (25 marks)
Do a dry run on the two algorithms (ALGORITHM 1 and ALGORITHM 2) shown
below.
ALGORITHM 1

End of function A2
Note: the function ENQUEUE only inserts a new element in the
queue if this element is different from NULL.
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 4 of 9
a) Briefly explain what the purposes of the two algorithms are and state the
asymptotic run-time complexity of each of the algorithms.
b) For the following Binary Search Tree (BST):
What is returned by the function call A1(root)?
(5.0 marks)
c) For the Binary Search Tree (BST) in part (b), provide a detail analysis on
the run-time complexity of the ALGORITHM 2, as explained in lecture.(5.0
marks)
d) Re-write the function A2, in pseudocode, using recursive function calls. You
may not use any form of iteration. (10.0 marks)
e) For a general Binary Search Tree (BST) of N elements, which of the two
algorithms A1 and A2, should you use? Give your choice and explain your
reasoning. (5.0 marks)
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 5 of 9
Question 3 (25 marks)
The data structure shown in Figure 1 depicts an implementation of a list of two
lists, that is, two linked list joined into one. In this example, the data structure is
implemented to group two separate lists of numbers, one consists of lists of even
numbers and the other consists of lists of odd numbers.
Two types of linked list are used in the above implementation. The node of the
main list (highlighted in grey) consists of a content field, a next node field, and a
next list field. The content node holds a value 0 for an odd list and a value 1 for
an even list. The node also contains two reference fields. The first is a ‘next node’
that links to the first node of a secondary list, and the second is a ‘next list’ that
links to the next link list.
The node of the secondary list (non-highlighted) consists of a content field and a
next node field. For an even list, the content holds an even number and for an
odd list, the content holds an odd number. The node has a ‘next node’ field that
link it to the next secondary list node.
Next Node
Next List
head
Next List
Next Node
Node from main list: Node from secondary list:
Next Node
Figure 1: A list of two lists
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 6 of 9
In a single linked list implemented in Java, this is the definition of a node:
class Node {
 int data;
 Node nextNode;
 // Constructor to create a new node
 // nextNode is by default initialized as null
 Node(int d) { data = d; }
}
a) Assuming that the above definition is kept for the nodes of the secondary
lists, device a new definition of node for the nodes of the main list. Call this
type of node MainNode and use the names of pointers NextNode and NextList
respectively in your implementation. (5.0 marks)
b) Write the pseudocode of the function INSERT(head,x) that inserts a new
number in this data structure. If the number is even it must go to the second
secondary list, the list that starts with node 1 in the main list. Otherwise, it
must go to the first secondary list. Assume the data structure already has
the main list created and numbers are inserted at the start of the secondary
list. (5.0 marks)
c) Write the pseudocode of the function SEARCH(head,x) that returns TRUE if
the number x is in the data structure (in any of the secondary lists) and
FALSE otherwise. (5.0 marks)
d) Write the pseudocode of the function DELETE(head, b) that receives as input
arguments the head of the last of two lists and a Boolean value. The function
DELETE(head,b) deletes one of the main nodes. If b equals 0, then the node
storing number 0 is deleted. Otherwise, the main node storing number 1 is
deleted. Consider the following cases: the main list is empty and it has only
one node (node 0 or 1). (10.0 marks)
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 7 of 9
Part B: (25.0 marks)
Your task for this assignment is to investigate some of the properties of queues.
You should write a Java, C++, or Phyton program which simulates the queuing
system in an email server.
Queues are commonly used in network systems. For example, e-mail is placed in
queues while it is waiting to be sent and after it arrives at the recipient’s mailbox.
A problem occurs, however, if the outgoing mail processor cannot send one or
more of the messages in the queue. For example, a message might not be sent
because the recipient’s system is not available.
Write an e-mail simulator that processes mail at an average of 20 messages per
minute. As messages are received, they are placed in a queue. For the simulation,
assume that the messages arrive at an average rate of 30 messages per minute.
Remember, the messages must arrive randomly, so you will need to use a random
number generator to determine when messages are received.
Each minute, you can dequeue up to 20 messages and send them. Assume that
up to 25% of the messages in the queue cannot be sent in any processing cycle.
Again, you will need to use a random number to determine whether a given
message can be sent. If it cannot be sent, put it back at the end of the queue or
enqueue it.
Run the simulator for 15 minutes, tracking the number of times each message
had to be requeued. At the end of the simulation, print the statistics that show:
1 The total messages processed.
2 The average arrival rate, that is, the average number of messages arriving
per minute.
3 The average number of messages sent per minute.
4 The average number of messages in the queue in a minute.
5 The number of messages sent on the first attempt, the number of messages
sent on the second attempt, and so forth.
6 The average number of times messages had to be requeued (do not include
the messages sent the first time in this average.)
NOTE: Since the question is to assess your understanding of the concept of
Queue, you are NOT allowed to use the library of the language that implement
queue. You need to write the codes (implementation) of Queue for this exercise.
(See point (iii).)
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 8 of 9
Sample Output:
Please enter the total minutes to run: 30
Total number of messages processed : 565
Average arrival rate : 29.60
Average number of messages sent per minute : 28.7
Average number of messages in the queue per minute : 65.07
Number of messages sent on 1st attempt : **
Number of messages sent on 2nd attempt : 87
Number of messages sent on 3rd attempt : 18
Number of messages sent on 4th attempt : 4
Number of messages sent on 5th attempt : 2
Average number of times messages had to be requeued : 1.30
Note: These are just sample answers to show the output format required from
your program. They are NOT necessarily the output that your program must
produce because the numbers shown were randomly generated.
Standard Requirements for Part B (Programming question):
(i) Java Version – JDK 6 update 17 or higher (Using Windows), or
(ii) C++ / C compiler – g++ 4.0 or higher (Using Windows or UBUNTU). In the event
that you use UBUNTU via VM, be careful with the memory function of the language
and make sure that the functions are used properly and do not cause any
segmentation error when the codes are compiled in Windows environment.
(iii) All coding must be your own work. Standard libraries of data structures and
algorithms such as STL may not be used.
(iv) Programs should be appropriately documented with comments.
(v) Execute your program and screen-capture the output. Include in your submission
all source code and libraries plus the screen-captures.
(vi) Students are to place all compilation and instructions on how to run the program
inside a readme.txt file. Your lecturer will refer to this file when marking. Without
a readme.txt or clear instructions for compilation, your lecturer will compile based
on his/her computer setting; any incompatibility, will deem as failure to compile
the program.
(vii) Submission filenames are to follow the naming convention given in the submission
instruction below. Do not use your own filename.
School of Computing and Information Technology University of Wollongong
CSCI203 – Data Structures and Algorithm, 2024 S1
SCIT, University of Wollongong, copyright 2024
Page 9 of 9
Submissions
This assignment is due by 9:00 pm Singapore time on Thursday, 15 February 2024.
 For Part A, type or hand-written your answer for each question in a MS Word or
equivalent document format and save it in a pdf formatted file, name your file as
YourUOWStudentNumber-A2-SolPartA.pdf.
 For Part B, the name of your program should be QueueSim.cpp, QueueSim.java, or
QueueSim.py depending on the programming language that you use to develop
your program. Execute your program and screen capture your output. Next, zip
your source code, libraries, readme.txt together with your screen capture and name
your file as YourUOWStudentNumber-A2-SolPartB.zip.
 Zip together YourUOWStudentNumber-A2-SolPartA.pdf and
YourUOWStudentNumber-A2-SolPartB.zip and name your file as
YourUOWStudentNumber-A2.zip. Do not use your own filename.
 All assignments that do not satisfy the submission requirements listed above will
not be evaluated and will be returned to the students with 0 marks.
Submit the files YourUOWStudentNumber-A2.zip through Moodle in the following
way:
1) Access Moodle at http://moodle.uowplatform.edu.au/
2) To login use a Login link located in the right upper corner the Web page or in
the middle of the bottom of the Web page
3) When successfully logged in, select a site CSCI203 (SP124) Algorithms and
Data Structures
4) Scroll down to a section Submissions of Assignments
5) Click at Submit your Assignment 2 here link.
6) Click at a button Add Submission
7) Move a file, for example, YourUOWStudentNumber-A2.zip into the
submission area. You can drag and drop files here to add them. You can also
use a link Add…
8) Click at a button Save changes,
9) Click at a button Submit assignment,
10) Click at the checkbox with a text attached: By checking this box, I confirm that
this submission is my own work, … in order to confirm authorship of your
submission,
11) Click at a button Continue.
A policy regarding late submissions is included in the subject outline.
Only one submission per student is accepted.
Assignment 2 is an individual assignment, and it is expected that all its tasks will be
solved individually without any cooperation with the other students. Plagiarism is treated
seriously. Students involved will likely receive zero. If you have any doubts, questions,
etc. please consult your lecturer or tutor during lab classes or over e-mail.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:program代做、Java程序語言代寫
  • 下一篇:代寫Understanding TCP Congestion Control
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

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

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

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

          9000px;">

                一本色道久久综合亚洲91| 久久一二三国产| 欧美日韩三级在线| 日韩欧美精品三级| 欧美国产精品一区二区| 无码av免费一区二区三区试看| 麻豆91免费观看| 色综合久久六月婷婷中文字幕| 欧美久久婷婷综合色| 欧美国产综合一区二区| 午夜久久福利影院| 97精品视频在线观看自产线路二| 欧美一区二区日韩一区二区| 一区二区三区色| av在线不卡免费看| 久久久噜噜噜久噜久久综合| 亚洲成人精品在线观看| 成人高清伦理免费影院在线观看| 日韩一区二区三区三四区视频在线观看| 国产精品久久久久影院亚瑟| 精品一区二区在线播放| 欧美精品久久99久久在免费线 | 国产精品99久久久久| 7777精品伊人久久久大香线蕉 | 久久久久久久电影| 免费成人在线网站| 91精品国产91综合久久蜜臀| 亚洲一区二区视频| 欧美亚洲综合另类| 伊人婷婷欧美激情| 91丝袜美腿高跟国产极品老师| 亚洲国产精品成人综合色在线婷婷| 视频一区二区中文字幕| 欧美日韩精品一区视频| 亚洲国产毛片aaaaa无费看| 日本福利一区二区| 一级特黄大欧美久久久| 欧美性生交片4| 亚洲va国产va欧美va观看| 欧美无人高清视频在线观看| 一区二区三区欧美视频| 日本道在线观看一区二区| 亚洲精品国产精华液| 欧美亚洲动漫另类| 亚洲福利电影网| 欧美一区二区三区免费在线看| 蜜桃一区二区三区四区| 久久久蜜臀国产一区二区| 国产高清视频一区| 亚洲欧洲日韩一区二区三区| 99精品久久久久久| 亚洲一区二区三区四区五区中文 | 九九精品视频在线看| 欧美一区二区三区电影| 麻豆成人91精品二区三区| 欧美成人官网二区| 国产成人av一区二区三区在线| 欧美激情一区二区| 色中色一区二区| 偷拍自拍另类欧美| 日韩欧美成人激情| 成人国产一区二区三区精品| 亚洲精品欧美二区三区中文字幕| 在线观看日韩精品| 精品在线一区二区三区| 国产精品素人视频| 欧美日韩精品一区二区三区四区| 六月丁香婷婷久久| 国产欧美一区二区精品性色| 在线观看免费成人| 国产最新精品免费| 亚洲欧美另类在线| 欧美成人女星排行榜| 99久久99精品久久久久久 | 日韩精品一区二区三区老鸭窝| 福利一区在线观看| 性久久久久久久久| 国产精品色在线观看| 69堂国产成人免费视频| 成人深夜视频在线观看| 亚洲成人av免费| 亚洲国产精品传媒在线观看| 欧美狂野另类xxxxoooo| 成人白浆超碰人人人人| 日本三级韩国三级欧美三级| 中文字幕亚洲一区二区va在线| 欧美一区二区免费| 91黄色激情网站| 国产99久久久国产精品潘金| 视频一区在线播放| 亚洲欧洲韩国日本视频| 精品日韩一区二区| 欧美精品xxxxbbbb| 色老综合老女人久久久| 国产成人精品免费一区二区| 欧美a级理论片| 亚洲一区二区三区不卡国产欧美| 日本一区二区三区在线不卡| 91精品国产品国语在线不卡 | 一区二区免费视频| 日本一区二区三区四区| 日韩视频国产视频| 欧美日韩成人综合| 91欧美一区二区| 国产成人免费av在线| 久久精品国产澳门| 青青草国产精品97视觉盛宴| 亚洲午夜精品一区二区三区他趣| 国产精品久久久久久久久免费相片| 91精品中文字幕一区二区三区| 色综合久久六月婷婷中文字幕| 国产a精品视频| 国产成人自拍网| 国产在线不卡一区| 精东粉嫩av免费一区二区三区| 天天影视涩香欲综合网| 亚洲成av人综合在线观看| 亚洲综合视频网| 亚洲一区二区精品3399| 亚洲激情校园春色| 一区二区三区 在线观看视频| 亚洲精品精品亚洲| 一区二区三区国产精品| 亚洲精品写真福利| 亚洲一区二区视频| 婷婷国产v国产偷v亚洲高清| 日韩精品乱码av一区二区| 日韩av电影免费观看高清完整版 | 久久综合久久鬼色| 欧美大片国产精品| 久久这里只有精品6| 久久久久久黄色| 欧美国产丝袜视频| 亚洲色图视频免费播放| 怡红院av一区二区三区| 亚洲国产欧美另类丝袜| 日日夜夜精品视频天天综合网| 丝袜诱惑制服诱惑色一区在线观看 | 国产精品久久久久aaaa| 亚洲欧洲日本在线| 亚洲在线视频免费观看| 日韩二区三区在线观看| 精品一区二区三区免费| 东方aⅴ免费观看久久av| 成人av网站在线观看| 日本韩国欧美在线| 欧美夫妻性生活| 久久夜色精品一区| 亚洲欧美自拍偷拍色图| 亚洲一区二区精品3399| 老司机精品视频导航| 成人免费视频网站在线观看| 欧美影院一区二区| 欧美va亚洲va| 亚洲猫色日本管| 看国产成人h片视频| av在线综合网| 日韩一级在线观看| 1000精品久久久久久久久| 午夜视频在线观看一区二区三区| 精品一区二区日韩| 色吧成人激情小说| ww亚洲ww在线观看国产| 亚洲一区二区精品久久av| 亚洲1区2区3区4区| 国产黄色精品视频| 欧美色综合影院| 欧美高清在线一区二区| 午夜视频在线观看一区| 国产福利一区二区三区视频在线| 一本久道久久综合中文字幕| 欧美一区二区久久| 一区二区三区欧美视频| 国产成人免费视频精品含羞草妖精| 欧美亚洲国产bt| 中文字幕中文字幕一区| 久久er99热精品一区二区| 色综合久久综合| 中文成人av在线| 国产在线乱码一区二区三区| 欧美亚洲国产一区二区三区va| 久久精品一区二区三区不卡| 视频一区在线视频| 色中色一区二区| 国产精品久久免费看| 国产乱码一区二区三区| 4hu四虎永久在线影院成人| 亚洲精品成a人| 91丨porny丨蝌蚪视频| 国产精品午夜在线| 国产高清久久久| 精品电影一区二区三区| 日本中文字幕一区| 欧美欧美欧美欧美| 亚洲国产sm捆绑调教视频| 色狠狠一区二区| 亚洲免费av高清| 色婷婷久久综合| 亚洲精品美国一| 91久久奴性调教|