成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron

代做DSA1002、代寫Java/c++設計編程

時間:2024-05-09  來源:  作者: 我要糾錯



Page 1 of 9
Curtin College Bentley
DSA1002 Data Structure and Algorithm
Trimester 1, 2024
Assignment
Weight: 40% of the unit
Assignment Location: Assignment is uploaded under Assessments section (Assessment 3:
Final Assessment) on unit Moodle page.
Answer Format. When you write an answer, clearly indicate the relevant question
number/letter. Include your name and student ID at the start. Also add appropriate
comments to code files to indicate author name and student ID. Detailed submission
guidelines can be found below in section 3.
Timeframe. You have 14 days (336 hours) to complete and submit your answers, from 09:00
am on 29th April 2024 until 09:00 am on 13
th May 2024 (UTC+8). You may
schedule your work within this period. However, late submissions are not allowed
(also check late submission policy in unit outlines).
Submission. Submit your answer document(s) to the “Assessment 3: Final Assessment”
area on Moodle under assessments section. You must verify that your submission was
successful. Correctly submitting is entirely your responsibility.
Report: There is a separate submission point for Report, make sure to submit report part on
this submission point.
Implemented Code: There is a separate submission point for Implemented Code, make sure
to submit code part on this submission point.
Reference Material. This is an OPEN BOOK and OPEN COMPUTER assignment. You
may refer to any written material, including your notes, course materials, books,
websites, Unit Moodle page recordings etc. However:
• You must complete this assignment entirely on your own.
• You should answer all questions in your own words and code.
• You can use pseudo code and algorithms provided in the unit slides (Moodle page)
for your implementation.
• During the assignment, you may not communicate with any other students/anyone
helping.
• Your answer document will be checked by text matching software for signs of
cheating,collusion and/or plagiarism.
• The assignment questions have been designed such that neither of the two
students, working independently,should not produce the same answers.
• The coding part of this assignment can be submitted in either python/java.
DSA1002 Trimester 3, 2023
Page 2 of 9
• Find detailed granular level marking rubrics at the end of the assignment.
**** READ COMPLETE DOCUMENT BEFORE STARTING****
DSA1002 Trimester 3, 2023
Page 3 of 9
1. Overall Assignment Description
In practicals you have implemented and learned about a number of algorithms and ADTs and
will be implementing more of these in the remaining practicals. In this assignment, you will be
making use of this knowledge to implement a system to explore and compare a variety of ADT
implementations. Feel free to re-use the generic ADTs from your practicals. However,
remember to self-cite; if you submit work that you have already submitted for a previous
assessment (in this unit or any other) you have to specifically state this. Do not use the
Java/Python implementations of ADTs – if in doubt, ask.
Introduction
In this assignment, you'll utilize your knowledge of algorithms and data structures to develop
a contact list management system for mobile phones. This system will provide users with a
user-friendly interface to store, manage and access their contacts effortlessly.
Problem Description
This assignment aims to develop a Contact List Management System for mobile phones, using
a range of data structures and algorithms to efficiently organize and manage contact
information. This system will enable users to add new contact, update existing contact, delete
contact, and search for contacts. The system while also offer advanced features such as sorting,
and grouping. This system will empower users to effortlessly manage their contacts while on
the go.
Task 1: Creating DSAContact class:
Create DSAContact class to represent individual contact entry. The essential attributes of a
contact includes: name, phone number, email address and group. Group can have one of the
following values (F (family), W (workplace) and FR (Friends)). Maintaining group information
in each contact will help to categorize contacts based on different groups.
Task 2: Maintain a Contact List:
In the context of a contact list, each contact entry will be represented as a key-value pair, where
the key is a unique identifier such as contact's phone number, and the value is the contact's
information which is typically an object of DSAContact class. Use hash table data structure to
store and maintain contact information.
Input: Utilize a file (contact_list.txt) containing list of different contacts.
Output: Successful storage of contact information within the hash table, with each contact
entry represented as a key-value pair.
Task 2: Adding, Deleting or Updating Contacts:
After storing contact information in a hash table, the next step involves implementing
functionalities to interact with and manipulate the contact data.
When adding a new contact, the system should prompt the user to input the contact's
information. The system calculates the hash value based on unique key (phone number) to
determine the index in the hash table where the contact information will be stored. If a collision
occurs during insertion (i.e., multiple keys hash to the same index), the system employs
DSA1002 Trimester 3, 2023
Page 4 of 9
collision resolution technique such as chaining or double hashing to manage the collision
and ensure all contact information is accurately stored.
To delete a contact, the user specifies the phone number of the contact, system then calculates
the hash value to determine the index in the hash table where the contact is stored. If the contact
is found at the calculated index, it is removed from the hash table, effectively deleting the
contact from the system otherwise the system must inform the user that the contact does not
exist.
When updating a contact, the user must specify the phone number of the user along with the
updated information. The system calculates the hash index of the specified contact in the hash
table where the contact is stored. If the contact is found at the calculated index, the system
updates the contact information with the provided updates otherwise the system must inform
the user that the contact does not exist.
Task 3: Searching through the contact list:
The system will prompt the user to input search terms (name or phone number). Matching
contact or contacts will be presented to the user for further action.
Task 4: Sorting contact list:
The system will provide option to the user to arrange the contacts in alphabetical order by their
names. Extract the names of contacts by iterating through the hash table and collecting the
names of each contact. Sort the names using either of Merge Sort, Quick Sort or Heap Sort
algorithm.
Task 5: Categorizing contacts in groups:
The system should allow users to filter contacts based on the group attribute. System will iterate
through the hash table, whenever its encounter a contact that belongs to the desired group e.g.
F (family group), it will add it to the filtered list of contacts.
Task 6: Interactive Interface and Testing:
Design the interactive menu of the Contact List Management System. When you run the
system, it should display a list of options like:
• View contacts list
• Add new contact.
• Delete contact.
• Update contact.
• Search contacts.
• Sort contact list.
• Display contact belonging to a particular group.
• Exit
Create a proper Test Harness by defining a set of test cases that cover various aspects of the
system's functionalities. This includes testing features such as adding contacts, searching,
updating, deleting contacts, categorizing in groups, and sorting contacts.
DSA1002 Trimester 3, 2023
Page 5 of 9
2 Project Report
A project report of minimum 8-10 pages should be submitted (pdf format) including following
details:
Usage information:
• Introduction: describing basic introduction of your program (software).
• Dependencies: any libraries required to use the program (software).
• Terminologies and abbreviations used in the code.
• Future directions: suggested future improvements.
Class UML Diagrams:
• Readme file, describing related information1
.
• Complete UML class diagrams of the classes used for implementation.
• A complete association of classes/objects (i.e., class relationship).
• Complexity analysis of all operations performed by the software (e.g. Load data, etc.).
• Traceability matrix of feature implementation and testing of your code2
.
Comments on Code: it is suggested to add detailed comments to your code.
References: (if any) all materials should be referenced Chicago referencing style.
1Example good Readme files can be found here. (https://github.com/matiassingers/awesomereadme)
2Traceabiliy matrix help. (https://www.youtube.com/watch?v=8_5xZAXdS_A)
3 Submission
Submit electronically through Moodle unit page under assessments section (“Assessment 3:
Final Assessment”).
You should submit a single file, which should be zipped (.zip) or tarred (.tar.gz). Check that
you can decompress it on the lab/personal computers. Your work will be tested on lab/computer
other than your PC so try to check your code on other PCs too. The file must be named
DSA_Assignment_1_<student id>, use underscores instead of the spaces in the file name.
The file should contain following deliverables:
• Your code. This means all python/java files needed to run your program. Do include
code provided to you as part of the assignment if that is required to run your program.
Do not include .class files or anything else that is not required to recompile python/java
files.
• README file includes short description of all files and dependencies, and information
on how to run the program (see section 2).
• Your program (software) test harnesses. One of the easiest ways for us to be sure that
your code works is to make sure that you’ve tested it properly.
• Documentation and Report for your code (Project Report)
Please verify that your submission is correct and not corrupted. You may make multiple
submissions, only your last one will be marked. However, late submissions are strictly not
allowed (also check late submission policy in unit outlines).
4 Marking Criteria
DSA1002 Trimester 3, 2023
Page 6 of 9
The assignment will be marked based on the following breakdown of the submission:
Code Implementation: (20 Marks) Code should be demonstrated during the tutorial to
achieve this requirement. The code should be appropriately written, as ADTs with comments.
The code developed will be tested against different tests (as per requirements given in section
1).
Project Report: (10 Marks) A minimum 8-10-page report based on information describe in
section 2.
Code Testing and Demonstration: (10 Marks) Code should be implementable, and testable
with the test harness. Also, should be demonstrated as per given schedule.
DSA1002 Trimester 3, 2023
Page 7 of 9
5 Academic Integrity
Please see the Coding and Academic Integrity Guidelines on unit Moodle page.
In summary, this is an assessable task. If you use someone else’s work or assistance to help
complete part of the assignment, where it’s intended that you complete it yourself, you will
have compromised the assessment. You will not receive marks for any parts of your submission
that are not your own original work. Further, if you do not reference any external sources that
you use, you are committing plagiarism and/or collusion, and penalties for academic
misconduct may apply.
Curtin college also provides general advice on academic integrity at
https://www.curtincollege.edu.au/content/dam/navitas/upa/curtin/pdfs/academic-integritypolicy.pdf
The unit coordinator may require you to provide an oral justification of, or to answer questions
about, any piece of written work submitted in this unit. Your response(s) may be referred to as
evidence in an academic misconduct inquiry.
DSA1002 Trimester 3, 2023
Page 8 of 9
Granular Marking Rubrics
Code Implementation (20 Marks)
a) Demonstrates correct implementation of the hash table representing the
contact list. (4)
b) Collisions occurrence while inserting new contact are handled propelry using
double hashing or chaining. (3)
c) Delete and update functions implemented correctly. (3)
d) Searching for a contact from the list is implemented correctly. (3)
e) Contact can be accurately categorized in groups. (3)
f) Accurate implementation of sorting algorithm for arranging list in alphabetical
order. (4)
Project Report (10 Marks)
• Usage Information: (2 Marks)
a) Clear introduction explaining the program's purpose and functionalities.
b) Dependencies and required libraries detailed for using the software.
• Terminologies and Future Directions: (2 Marks)
a) Clear explanation of terminologies and abbreviations used in the code.
b) Well-articulated suggestions for future improvements in the software.
• Class UML Diagrams and Complexity Analysis: (6 Marks)
a) Complete UML class diagrams depicting classes used for implementation and
their associations.
b) Thorough complexity analysis of all operations performed by the software,
e.g., load data, pathfinding, etc.
• Traceability Matrix and Comments on Code: (6 Marks)
a) A detailed traceability matrix showcasing feature implementation and testing
of the code.
b) Comprehensive comments within the code, aiding understanding and
readability.
Code Testing (10 Marks)
• Testability and Correctness: (5 Marks)
a) Demonstrated implementability and testability of the code with a
DSA1002 Trimester 3, 2023
Page 9 of 9
comprehensive test harness.
b) Successful execution and correctness of the code against various test
scenarios. (Hint: you can try some contacts in the designed phone book,
pasting images in the report)
• Error Handling and Robustness: (5 Marks)
a) Proper error handling mechanisms incorporated within the code. (Hint: you
can use custom exceptions)
b) Robustness demonstrated against unexpected inputs or scenarios.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp















 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:COMP1212代寫、代做Java/c++程序設計
  • 下一篇:EBU6304代寫、Java編程設計代做
  • 無相關信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗證碼平臺 幣安官網下載 歐冠直播 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    成a人片国产精品_色悠悠久久综合_国产精品美女久久久久久2018_日韩精品一区二区三区中文精品_欧美亚洲国产一区在线观看网站_中文字幕一区在线_粉嫩一区二区三区在线看_国产亚洲欧洲997久久综合_不卡一区在线观看_亚洲欧美在线aaa_久久99精品国产_欧美卡1卡2卡_国产精品你懂的_日韩精品91亚洲二区在线观看_国内一区二区视频_91丨国产丨九色丨pron
    男人的j进女人的j一区| 狠狠色狠狠色综合| 美国十次综合导航| av网站免费线看精品| 91精品国产美女浴室洗澡无遮挡| 国产精品美女久久久久aⅴ国产馆| 免费av成人在线| 欧美视频中文一区二区三区在线观看 | 男人的天堂久久精品| 日本丰满少妇一区二区三区| 国产精品免费aⅴ片在线观看| 国产在线观看一区二区| 欧美一区二区三区四区视频 | 色综合天天视频在线观看 | 色先锋久久av资源部| 国产精品久久久爽爽爽麻豆色哟哟| 精品一区二区三区视频| 欧美福利视频一区| 午夜精品国产更新| 欧美色综合天天久久综合精品| 亚洲欧美经典视频| 91看片淫黄大片一级在线观看| 国产精品无人区| 国产精品一区一区三区| 久久久久久久久蜜桃| 国产最新精品精品你懂的| 日韩精品一区二区三区四区视频 | 成人av在线播放网址| 国产片一区二区三区| 91精品欧美福利在线观看| 亚洲一区二区三区小说| 日本高清不卡视频| 亚洲午夜日本在线观看| 欧美日韩卡一卡二| 五月婷婷综合在线| 正在播放亚洲一区| 日本成人中文字幕| 日韩你懂的电影在线观看| 日本不卡在线视频| 精品国产免费一区二区三区香蕉| 久久91精品国产91久久小草| 久久综合色天天久久综合图片| 国产精品一区二区x88av| 久久精品在线观看| 波多野结衣中文一区| 亚洲男同性恋视频| 欧美色图天堂网| 日韩电影免费一区| 欧美成人r级一区二区三区| 精品一区二区影视| 中文字幕乱码久久午夜不卡| 99久久精品免费| 亚洲一区av在线| 91精品国产乱| 国产原创一区二区三区| 中文在线一区二区| 在线精品亚洲一区二区不卡| 图片区日韩欧美亚洲| 日韩免费电影一区| 亚洲狠狠爱一区二区三区| 久草精品在线观看| 久久久国产精品午夜一区ai换脸| 国产成人午夜99999| 国产精品视频一区二区三区不卡| aa级大片欧美| 亚洲一区二区精品久久av| 91麻豆精品国产91久久久更新时间| 久久99精品国产91久久来源| 久久精品夜色噜噜亚洲aⅴ| 成人国产精品免费观看| 亚洲一区二区精品视频| 欧美一级片在线观看| 国产成人在线电影| 一区二区三区久久| 日韩午夜在线观看| 成人动漫一区二区| 亚洲国产精品久久久久婷婷884| 欧美二区在线观看| 国内久久婷婷综合| 18欧美乱大交hd1984| 欧美放荡的少妇| 国产suv一区二区三区88区| 一区二区三区四区中文字幕| 91精品视频网| 成人免费视频网站在线观看| 亚洲已满18点击进入久久| 欧美大片一区二区三区| 99re成人精品视频| 青青草国产精品亚洲专区无| 久久久久国产精品麻豆| 国产真实乱偷精品视频免| 成人免费在线播放视频| 欧美一区二区三级| 成人av片在线观看| 日韩影视精彩在线| 中文字幕中文乱码欧美一区二区| 69av一区二区三区| jiyouzz国产精品久久| 日产精品久久久久久久性色| 国产精品你懂的| 日韩欧美综合在线| 色94色欧美sute亚洲线路二| 精品一区二区三区欧美| 夜夜嗨av一区二区三区中文字幕| 欧美精品一区视频| 精品视频在线免费观看| 国产成人综合自拍| 日韩成人av影视| 一区视频在线播放| 精品日产卡一卡二卡麻豆| 91视频.com| 国产一区二区女| 丝袜亚洲精品中文字幕一区| 国产精品区一区二区三区| 日韩欧美国产一区在线观看| 91福利在线播放| 高清成人免费视频| 奇米精品一区二区三区在线观看一| 国产精品成人网| 久久久亚洲精品一区二区三区| 欧美另类z0zxhd电影| 99久久免费精品高清特色大片| 老司机午夜精品| 亚洲v中文字幕| 亚洲三级免费电影| 欧美激情一区二区三区在线| 欧美一级在线视频| 欧美日韩一区二区电影| 97久久精品人人爽人人爽蜜臀| 国内不卡的二区三区中文字幕| 三级久久三级久久久| 一区二区三区中文字幕精品精品| 成人h动漫精品一区二| 日本不卡一区二区三区高清视频| 亚洲精品中文在线| 国产精品久久三区| 国产日韩精品久久久| 欧美大片拔萝卜| 91精选在线观看| 欧美色视频在线观看| 91一区二区在线观看| 国产成人av电影在线观看| 青青草精品视频| 调教+趴+乳夹+国产+精品| 亚洲永久免费视频| 一区二区三区丝袜| 亚洲免费毛片网站| 亚洲欧洲日韩在线| 中文一区二区完整视频在线观看| 久久久影视传媒| 精品国偷自产国产一区| 日韩欧美一区二区视频| 91精品国产一区二区三区| 欧美日韩在线三级| 欧美性猛片aaaaaaa做受| 色偷偷一区二区三区| 94-欧美-setu| fc2成人免费人成在线观看播放| 国产成人啪午夜精品网站男同| 国产剧情在线观看一区二区| 韩国午夜理伦三级不卡影院| 精品影视av免费| 国产综合色在线| 国产精选一区二区三区| 国产高清在线观看免费不卡| 国产成人精品影院| 成人精品鲁一区一区二区| 成人免费视频视频在线观看免费 | 国产综合久久久久久久久久久久| 蜜桃传媒麻豆第一区在线观看| 免费观看日韩电影| 久久精品国产一区二区| 激情综合五月天| 国产一区二区久久| 国产电影精品久久禁18| 亚洲国产日韩在线一区模特| 亚洲黄一区二区三区| 亚洲一区在线视频| 亚洲国产精品一区二区www在线| 午夜欧美大尺度福利影院在线看| 婷婷开心久久网| 老司机免费视频一区二区| 经典三级在线一区| 国产成人在线视频免费播放| 成人毛片老司机大片| av电影一区二区| 欧美最猛性xxxxx直播| 欧美日韩高清一区二区不卡| 日韩一级二级三级| 国产亚洲精品bt天堂精选| 国产精品超碰97尤物18| 亚洲一二三四久久| 日韩va亚洲va欧美va久久| 韩国精品主播一区二区在线观看| 丁香桃色午夜亚洲一区二区三区| 91蝌蚪porny| 欧美精品久久99| 精品免费国产二区三区 | 免费人成黄页网站在线一区二区| 加勒比av一区二区|