久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

COMP2003J代寫、代做Python/Java編程語言

時間:2024-04-17  來源:  作者: 我要糾錯



Assignment 1: AVL & Splay Trees
COMP2003J: Data Structures and Algorithms 2
Weight: 10% of final grade
Document Version: 1.0
Introduction
This assignment is intended to give you experience implementing AVL and
Splay trees. It is also a good exercise to gain experience about how generics,
inheritance and object references work in Java.
Source code that you can start from has been posted to BrightSpace in the file
Assignment1-Source.zip. This also contains the Javadoc API documentation for
the classes that have been provided (in the “doc” folder). Import this project into
Eclipse in the usual way.
Tasks
The main tasks for this assignment are:
• Implement the key methods for an AVL Tree.
• Implement the key methods for a Splay Tree.
• Develop a strategy to test if your implementations are correct.
Implementation of AVL Tree Methods
The source code contains a partial implementation of an AVL Tree in a file
called AVLTree.java in the dsa.impl package. Your work in this section must be
in this class and it must use the interfaces that are provided.
You must implement the following methods:
• public void insert( T value ) – insert a value into the AVL tree.
• public void remove( T value ) – remove a value from the AVL tree.
• public boolean contains(T value) – check to see if a value is contained in
the AVL tree. Returns true if the value is in the tree, or false if not.
• private void restructure( IPosition<T> x ) – trinode restructuring (the three
nodes are x, its parent and its grandparent).
If you wish, you may create other methods that help you to complete the task
(e.g. rightRotate(IPosition<T> n), leftRotate(IPosition<T> n), etc.).
Some hints and tips:
- Remember your AVLTree extends several other classes, so you can
use some of their helpful methods (e.g. expandExternal(…)).
- The expandExternal(…) method uses newPosition(…) to create all
position objects, so all the positions in the tree will be AVLPosition
instances.
- You can cast an IPosition<T> to an AVLPosition in the same way as you
did in previous worksheets.
- Remember every parent/child relationship works in two directions.
Every time you change one of these references, you must change both.
- In the lectures we talk about attaching subtrees. BUT when we program
this, we notice that the subtree structure does not change at all. We just
need to put the root of the subtree in the right place.
- An AVLPosition object has a height attribute. You will need to efficiently
calculate the height of the positions in the tree when the tree changes.
Calculating the heights of all positions every time the tree changes will
be at best O(n). An efficient implementation would be at worst O(h) when
an insert(…) or remove(…) operation is called.
- The TreePrinter class has been provided, so you can print the contents
of your tree and see what it contains.
Implementation of Splay Tree Methods
The source code contains a partial implementation of a Splay Tree in a file
called SplayTree.java in the dsa.impl package. Your work in this section must be
in this class and it must use the interfaces that are provided.
You must implement the following methods:
• private void splay( IPosition<T> p ) – splay a position in the tree.
• public void insert( T value ) – insert a value into the splay tree.
• public void remove( T value ) – remove a value from the splay tree.
• public boolean contains( T value ) – check to see if a value is contained
in the splay tree. Returns true if the value is in the tree, or false if not.
Remember, this method also causes a splay(…) operation.
Testing the Tree Implementations
It is important to check whether your implementations are correct. A good way
to do this is to use your tree to perform some operations, and then check if the
outcome is correct. This is best done using a program, rather than doing it
manually every time.
An example is given in the AVLTreeStructureTest class in the dsa.example
package. This performs some operations (only insert) on an AVL tree. To check
if the final AVL tree is correct, it compares it with a Binary Search Tree that has
the final expected shape (I worked this out manually).
Another example is shown in the AVLTreeSpeedTest class. This performs several
operations on an AVL Tree and measures how quickly it runs. This is a good
way to test the efficiency of your implementation.
Create some test classes for your implementation (called Test1, Test2, etc.).
You can follow these examples or have your own ideas.
In your tests, you should test all the different types of restructuring that are
possible (e.g. for a Splay Tree they should cause zig, zig-zig and zig-zag splays
to both sides, and at the root and deeper in the tree).
Each test class must have a comment to explain the purpose of the test and
what the outcome was.
Submission
• This is an individual programming assignment. Therefore, all code
must be written by yourself. There is some advice below about avoiding
plagiarism in programming assignments.
• All code should be well-formatted and well-commented to describe what
it is trying to do.
• If you write code outside the SplayTree.java, AVLTree.java and test files
(Test1.java, Test2.java, etc.), it will not be noticed when grading. Write
code only in these files.
• Submit a single .zip file to Brightspace.
o This should Include only the files you have written code in. It is
not necessary to submit your entire Eclipse project.
Assignment 1 Grading Rubric
This document shows the grading guidelines for Assignment 1 (implementation of AVL
Trees and Splay Trees). Below are the main criteria that will be applied for the major grades
(A, B, C, etc.). Other aspects will also be taken into account to decide minor grades (i.e.
the difference between B+, B, B-, etc.).
- Readability and organisation of code (including use of appropriate functions,
variable names, helpful comments, etc.).
- Quality of solution (including code efficiency, minor bugs, etc.).
Passing Grades
D Grade
Good implementation of an AVL Tree or Splay Tree, plus some basic testing.
A "good" implementation is one where all the key methods work correctly in the vast
majority of cases (i.e. some occasional bugs will be tolerated).
C Grade
Good implementation of an AVL Tree and a Splay Tree, plus some basic testing of both;
OR
Good implementation of an AVL Tree or a Splay Tree, plus comprehensive testing of the
tree in question.
"Comprehensive" testing should make sure that the different operations of the tree(s) are
all tested (e.g. for a Splay Tree "Zig" operation, it would check both situations where the
node is a left child and where the node is a right child. For a "Zig-Zig" operation, this
should also be tested for both sides, as well as being tested where the splay operation
happens at the root and where it happens deeper in the tree).
B Grade
Excellent implementation of an AVL Tree and a Splay Tree, plus comprehensive testing
of both; OR
Excellent implementation of an AVL Tree and a Splay Tree, with some basic testing and
an efficient approach to height calculation for AVL trees.
A Grade
Excellent implementations of AVL Tree and Splay Tree, with comprehensive testing of
both and an efficient approach to height calculation in AVL Trees.
Failing Grades
ABS/NM Grade
No submission received/no relevant work attempted.
G Grade
Code does not compile; OR
Little or no evidence of meaningful work attempted.
F Grade
Some evidence of work attempted, but few (if any) methods operate in the correct
manner.
E Grade
AVL Tree and/or Splay Tree have been attempted, but there are too many
implementation errors for the implementation to be useful in practice.
Plagiarism in Programming Assignments
• This is an individual assignment, not a group assignment.
• This means that you must submit your own work only.
If you submit somebody else's work and pretend that you wrote it, this
is plagiarism.
• Plagiarism is a very serious academic offence.
Why should you not plagiarise?
• You don't learn anything!
• It is unfair to other students who work hard to write their own solutions.
• It's cheating! There are very serious punishments for students who
plagiarise. The UCD policy on plagiarism can be found online1.
- A student found to have plagiarised can be exclude from their
programme and not allowed to graduate.
Asking for Help
If you find things difficult, help is available.
• TAs are available during lab times.
• You can post questions in the Brightspace discussion forum or our
Wechat group.
• You can email the head TA (dairui.liu@ucdconnect.ie).
• You can get help from your classmates.
**Getting help to understand something is not the same as copying a
solution! **
The best way to get useful answers is to ask good questions.
Don't just send a photo of your computer screen and ask "Why does this not
work?".
Do:
• Send your Java file(s) as an attachment. We can't run code that's in a
photograph to test it out!
• Say what error message you got when you tried to run the code (if
any).
• Say what the code did that you did not expect.
• Say what the code did not do that you did expect.
1 https://www.ucd.ie/t4cms/UCD%20Plagiarism%20Policy%20and%20Procedures.pdf
How to avoid plagiarism: Helping without copying.
If you are trying to help a classmate with a programming assignment, there
are two golden rules:
Never, ever give your code to somebody else.
• You don't know what they will do with it or who they will give it to.
• If somebody else submits code that is the same as yours, you will be
in trouble too.
Don't touch their keyboard (this advice is more relevant when we are in labs together)
• Don't type solutions for them! It will end up looking a lot like your code.
Also, they don't learn anything.
Here are some other ways you can help a friend with an assignment, without
risking plagiarism:
• If their code doesn't work, it's OK to explain what is wrong with it.
• If they don't understand a concept, draw a diagram to explain.
• Tell them about useful methods that I have provided that can help
achieve their goals.
• Describe an algorithm that will help.
• Describe it in words or diagrams, not in code!
• E.g. "You could try saving the node's right child as a variable.
Then you could use a loop to keep getting that node's left child
until you reach the bottom of the tree". 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp













 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CIT 594代做、代寫Python設(shè)計編程
  • 下一篇:CS 2550代做、SQL程序語言代寫
  • 無相關(guān)信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    999精品网站| 99精品视频在线看| 九九九九免费视频| 日日噜噜噜夜夜爽爽| 中文字幕第36页| 国产在线播放观看| 黄色一级片av| 中国一级黄色录像| 中文字幕 日韩 欧美| 成人一区二区三| 久久成人免费观看| 日韩a∨精品日韩在线观看| 永久免费看av| 91嫩草国产丨精品入口麻豆| 国产精品无码乱伦| 国产资源中文字幕| 欧美亚洲视频一区| 国产在线拍揄自揄拍无码| 最新黄色av网站| 日本三日本三级少妇三级66| 91在线第一页| 四虎影院一区二区| 91精品国产吴梦梦| 免费人成在线观看视频播放| www.成年人视频| 999久久欧美人妻一区二区| 一级黄色录像免费看| 特级黄色录像片| 黄色一级片国产| 国产树林野战在线播放| 天天综合五月天| 日韩一二区视频| 日本午夜激情视频| 久久婷婷国产精品| 天堂社区在线视频| 57pao国产成永久免费视频| 欧美国产日韩在线视频| 喜爱夜蒲2在线| 日韩欧美国产综合在线| 熟女人妇 成熟妇女系列视频| 99sesese| 黄黄视频在线观看| 黄色一级视频片| 黄色三级视频片| 深爱五月综合网| 日韩精品在线观看av| 91看片就是不一样| www.污污视频| 日本老太婆做爰视频| 男女猛烈激情xx00免费视频| 成年人免费在线播放| 亚洲天堂国产视频| 成人污网站在线观看| 欧美牲交a欧美牲交aⅴ免费真| 中文字幕在线综合| 特级西西444| 久久久久久久久久福利| 色综合五月婷婷| 国产精品12345| 久久黄色片网站| 一本久道高清无码视频| 日韩福利视频在线| 国产日产欧美一区二区| 国产午夜福利视频在线观看| 爽爽爽在线观看| 欧美黑人经典片免费观看| 中文字幕免费高清在线| 免费毛片网站在线观看| 在线观看免费av网址| 欧美一级免费播放| 国产传媒免费观看| 国产精品视频一区二区三区四区五区| 一区二区免费av| 欧美一级在线看| 欧美性受xxxx黒人xyx性爽| 成人观看免费完整观看| 警花观音坐莲激情销魂小说| 九色porny91| 无码专区aaaaaa免费视频| 99日在线视频| 欧美视频第三页| 成人av在线不卡| 做a视频在线观看| 国产特级黄色大片| 潘金莲一级淫片aaaaaa播放1| 日本在线视频www| 女人帮男人橹视频播放| 日本精品一区在线| 韩国一区二区av| 黄色一级视频在线播放| 国产九九九视频| 国产天堂在线播放| 欧美变态另类刺激| 超碰在线免费观看97| 午夜激情av在线| 中国丰满人妻videoshd| 成人手机在线播放| 午夜免费福利网站| 亚洲福利精品视频| 欧美亚洲一二三区| 成人小视频在线观看免费| 日韩av自拍偷拍| 日韩av手机版| 激情婷婷综合网| 亚洲 欧美 日韩 国产综合 在线| 国产内射老熟女aaaa| 亚洲天堂av一区二区三区| www.xxx亚洲| 久久久999免费视频| 国产精品videossex国产高清| 天天干天天av| 欧美三级午夜理伦三级富婆| 九色在线视频观看| 欧美一级视频在线播放| 超碰10000| 97精品国产97久久久久久粉红| 中文字幕22页| 加勒比av中文字幕| 欧美一级xxxx| 亚洲18在线看污www麻豆| 日本在线播放一区二区| 亚洲小视频网站| 精品综合久久久久| 国产永久免费网站| 中文字幕第17页| 色婷婷激情视频| 亚洲精品偷拍视频| 国产91porn| 国产精品videossex国产高清 | 日韩精品一区二区在线视频| 精品亚洲视频在线| 黄频视频在线观看| 国产免费色视频| 亚洲AV无码成人精品一区| 在线播放 亚洲| 国产盗摄视频在线观看| 中国老女人av| 亚洲一区 在线播放| 国产一二三在线视频| 无码专区aaaaaa免费视频| 老太脱裤让老头玩ⅹxxxx| 亚洲最大天堂网| 真实国产乱子伦对白视频| 国产一区一区三区| 4444亚洲人成无码网在线观看| 精品一区二区三区无码视频| 精品这里只有精品| 男女曰b免费视频| 久热精品在线播放| 丰满女人性猛交| 日韩在线观看a| 99999精品视频| av网站在线不卡| 国产高潮呻吟久久久| 男人添女荫道口女人有什么感觉| 国产自偷自偷免费一区 | 可以看污的网站| 久久久国产精华液999999 | 女性隐私黄www网站视频| 欧美一级特黄a| 精产国品一二三区| 亚洲美免无码中文字幕在线 | 九九九九九伊人| 国产91在线亚洲| 久久精品.com| 日韩欧美中文视频| 蜜臀av色欲a片无码精品一区| 欧美精品成人网| 色撸撸在线观看| 男人操女人免费软件| 艹b视频在线观看| 热久久最新地址| 日本wwww视频| 久久艹这里只有精品| 少妇高潮毛片色欲ava片| 国产一级片自拍| 国产a级片网站| 邪恶网站在线观看| 波多野结衣av一区二区全免费观看| 激情视频综合网| 成人国产一区二区三区| 老头吃奶性行交视频| 日韩一级免费看| 亚洲少妇久久久| 日韩精品一区二区免费| 日本中文字幕精品—区二区| 超碰10000| 午夜剧场高清版免费观看| 欧美日韩一道本| 99亚洲精品视频| 久久久久久久香蕉| 男人日女人bb视频| 超碰超碰超碰超碰超碰| 国内自拍视频一区| 国产在线播放观看| 久久精品久久99| 久久久久久三级| 免费 成 人 黄 色| 4444在线观看| 亚洲一区二区偷拍|