首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做program、代写C/C++设计程序
项目预算:
开发周期:
发布时间:
要求地区:
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
1/6
Assignment 2: Graph Problem
Weight: 40%
Due: October 20th, 11:55pm
Learning Outcomes
1. Transform a real world problem into a simple abstract form that
is suitable for computation
2. Implement common data structures and algorithms using a
common programming language
3. Analyse the theoretical and practical run time and space
complexity of computer code in order to select algorithms for
specific tasks
Introduction
This assignment is more like a mini project. You will pick a graphbased
problem of your choice and investigate potential problem
solutions. Your submission will consist of both a Visual Studio
project and a written report.
Project Choice
You may choose any type of graph problem. For example, the
domain might be:
Social networks (online or real-world)
Computer networks
Navigation graphs
Neural networks
Road networks
Waterpipe networks
Project dependency graphs
Having chosen the domain that interests you, you should choose a
specific problem within that domain. e.g. disease transmission,
pathfinding, data propagation.
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
2/6
Next choose a standard graph algorithm that might form part of a
solution to your problem, or one that is related to your problem
domain. This could be one discussed in lectures, or another
standard graph algorithm. For example:
Minimal spanning tree
Shortest path
Network flow
Topological sort
A big part of this assignment is the process of identifying a problem.
The ability to identify real world problems and relevant algorithms is
one of the key skills that you will need in your career. You should
read about what is happening in the world around you and talk to
other people (including, but not limited to, teaching staff) to find a
topic that interests you.
Task 1: Standard Algorithm and Data
Structure
For the first task, you should implement the standard algorithm of
your choice using the adjacency list graph data structure developed
in the tutorials. You may make minor modifications to the data
structure to accommodate your problem domain, and you may
convert the graph into a different format (e.g. adjacency matrix) if it
makes sense to do so - but your graph must be initially constructed
as an adjacency list. This could be achieved using the test file
format and redirected input as used in tutorials, or by reading other
file formats, or procedurally generated.
Task 2: Problem Specific Algorithm
Your next task is to implement one or more solutions to your chosen
problem and conduct an investigation. As with the first assignment
you should be exploring alternatives, but the task now is more open
ended. For example you might:
Compare two different solutions in terms of time and/or space
efficiency
Compare two different solutions in terms of accuracy (e.g.
exact solution vs approximate solution)
Compare a single solution with different configurations (e.g.
how does a particular parameter affect performance?)
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
3/6
Compare a single solution for different types of graphs.
Or your particular problem and domain might lend itself to some
other type of analysis. If you are unsure, check with your tutor or unit
coordinator.
For this part of the assignment you should use the graph data
structure (e.g. adjacency list or adjacency matrix) that is most
appropriate.
As with the first assignment, you need to think about how to test
your solution. Ideally, this will involve real-world graph data. You will
find some real-world graph datasets online that you can use (e.g.
graphdatasets.com). These datasets may also give you some
inspiration for choosing a problem. Alternatively, you may need to
generate random graphs for thorough testing (e.g. using one of the
small-world graph construction techniques).
Task 3: Report
You will then write a report that includes the following sections:
Introduction and Background: introduce your problem domain
and clearly describe the specific problem that this report
addresses. Describe the significance of the problem and any
trade-offs that might be relevant.
Methodology: describe in detail the approaches you have
implemented, including pseudocode for each approach. Also
describe your testing methodology.
Results and Discussion: present your results clearly and
concisely, paying particular attention to the visual presentation
of graphs and tables so that the reader is able to quickly and
accurately compare your methods.
Conclusion: summarise your findings and discuss the
significance of the results and potential future work that could
be undertaken.
Unlike the first assignment, this should be a longer document in the
style of a scientific report. The writing, structure, and presentation
should be such that information is quickly and easily understood - it
doesn't have to look pretty.
The following resources might help:
Computer Science Writing
How to write a first-class paper
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
4/6
Scientific Writing Made Easy
There is no word limit. As with any scientific writing, you should write
as much as necessary so that another person could fully understand
and reproduce your results - but absolutely no longer than
necessary!
While there is no word limit, it is expected that around 1000 words
should be ample for this report.
Submission and Marking
You just need to submit your report (containing the GitHub link) on
MyLO. Do not modify your GitHib project after submission. If you
have made a small mistake that you would like to correct, please
check with the unit coordinator first.
Your code submission should be structured in such a way that the
marker can easily run your program to test your standard algorithm.
Ensure that there are clear instructions for testing and include
multiple test files.
It should also be easy for the marker to run and test your custom
solution and make comparisons. Again, there should be multiple test
files and/or the ability to procedurally and randomly generate graph
data for testing. Think carefully about how best to display output to
make it easy to interpret the results.
You can get an idea of what the marker is looking for by checking
the learning outcomes at the top of the page.
1. For LO1, we want to see that you are able to transform your
real-world problem into a graph data structure.
2. For LO2, we want to see that your code is correct, written in C,
and that you have followed good development practices. This
means that we want to see your test code and testing files, but
we also want to see that your commit history on GitHub shows
a well documented history of iterative and incremental
development - not just one big commit. This will be absolutely
essential for this assignment - submissions that do not show
iterative and incremental development and testing will
receive a failing grade!
3. For LO3 we will be looking at your approach to the
investigation, your presentation of results, and your
understanding of the significance of the results.
What we won't be assessing:
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
5/6
Quality of code and code comments. However, by now you
should realise that it helps everyone (inlcuding you) if your code
is clear, with at least some comments for difficult sections. If
there is an error in your code, the marker may be able to
correct it and continue marking if your code is clear and
commented - but they don't have much time!
The presentation of your report. Again, it still helps you and the
marker to make it clear and logical - it just won't be directly
assessed for this assignment. So make it clear and concise,
don't waste time making it fancy.
See the rubric for more detail on assessment.
Academic Integrity
In this unit you are expected to use all resources at your disposal to
develop your code. This includes:
Tutorial and unit materials
Code that you find online
Code written wholly or in part by AI tools (e.g. Copilot or
ChatGPT)
Regardless of how you develop your code, you must document
any sources or resources you used. This can be a code comment
before the relevant part of code, or a comment at the top of the file.
And you are responsible for the code you submit, including any
errors, regardless of the source.
You may also use tools like ChatGPT or Grammarly to assist with
writing your report. This is especially useful if English is not your first
language. Again, you are responsible for what you submit, and
please also add the tools used to your list of resources.
You may also discuss the assignment with other students or help
each other with related tutorial work. And of course you may discuss
the assignment with your tutor or unit coordinator. But you may not
directly assist another student with their assignment or receive
assistance from anyone on your own assignment.
Under no circumstances should you share your code with
another student - and that includes sharing your screen in
online chat! It is very easy for someone to take a screen shot
without your permission, and you will both be in breach of academic
integrity - even if it is just carelessness on your part.
, 15:16 Assessment Task 2: Graph Problem - KIT205 Data Structures and Algorithms
6/6
At no time should your GitHub repository be made public. It is a
good idea to add the unit coordinator as a contributor as soon as
you start the code.
We take any breach of academic integrity very seriously. If you fail to
properly document sources, or get help from other people, or
provide help to other students (intentionally or just carelessly), we
will report it and the consequences can be severe.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!