美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇

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設計編程
  • 下一篇:CS 2550代做、SQL程序語言代寫
  • 無相關信息
    昆明生活資訊

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

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

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

    美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇
    欧美亚一区二区三区| 性一交一黄一片| 国产一二三区精品| 久久久久亚洲AV成人无在| av女人的天堂| 成人在线观看免费高清| 亚洲精品午夜视频| 亚洲一区 欧美| 美国美女黄色片| 51精品免费网站| 在线观看xxx| 中国极品少妇xxxx| 国产伦精品一区二区三区妓女| 蜜臀av粉嫩av懂色av| 人妻av一区二区| 无码人妻精品一区二区中文| 免费在线观看污| 91视频综合网| 亚洲综合网在线| 国产69视频在线观看| 日本黄色网址大全| 99久久精品久久亚洲精品| 国产又粗又硬又长又爽| 久久性爱视频网站| 卡一卡二卡三在线观看| 日本r级电影在线观看| 久久久久亚洲av无码麻豆| 奇米777第四色| x88av在线| 久久久无码人妻精品无码| 成人精品在线观看视频| 在线观看亚洲网站| 影音先锋黄色资源| 全程偷拍露脸中年夫妇| 播金莲一级淫片aaaaaaa| 亚洲波多野结衣| 在线国产视频一区| 91丨porny丨九色| 免费一级做a爰片久久毛片潮| 国产大学生自拍| 香蕉久久久久久久| 国产精品无码永久免费不卡| 日韩在线一卡二卡| 少妇久久久久久久久久| 国产精品日日摸夜夜爽| 三级影片在线观看| 亚洲区自拍偷拍| 欧美成人三级伦在线观看| 少妇aaaaa| 日本视频在线免费| 久久成人激情视频| 成人无码www在线看免费| 伦伦影院午夜理论片| 免费成人深夜蜜桃视频| 深爱五月激情网| 亚洲欧洲日韩综合| 情侣偷拍对白清晰饥渴难耐| 欧美大片免费播放器| 精品人妻在线视频| 日韩黄色一区二区| 麻豆tv在线观看| 懂色av懂色av粉嫩av| 2017亚洲天堂| jizz18女人高潮| 国产肥白大熟妇bbbb视频| 久久无码人妻精品一区二区三区| 亚洲熟女一区二区三区| 欧洲成人午夜精品无码区久久| 波多野结衣家庭教师| 亚洲欧美综合7777色婷婷| 天堂网中文在线观看| 日韩免费av一区| 美女视频久久久| 亚洲国产精品免费在线观看| 欧美国产日韩在线观看成人| 一本色道久久88| 成人午夜福利一区二区| 亚洲麻豆一区二区三区| 亚洲精品中文字幕在线播放| 99热超碰在线| 在线 丝袜 欧美 日韩 制服| 日本少妇色视频| 精品一区二区三孕妇视频| 久久久久99精品成人| 欧美黄色aaa| 中文字幕在线观看91| 久久久久久婷婷| 一卡二卡三卡四卡| 懂色av粉嫩av蜜臀av一区二区三区| 欧美美女性生活视频| 国产a免费视频| 国模私拍在线观看| 男人天堂av电影| 日韩在线观看视频一区二区| 性感美女一区二区三区| 素人fc2av清纯18岁| 999久久久国产| 中文字幕永久免费| 国产精品美女高潮无套| 在线观看成人毛片| 免费在线观看你懂的| 亚洲波多野结衣| 国产精品无码毛片| 国产一区二区精彩视频| 免费a v网站| 九九热视频在线免费观看| 中国免费黄色片| 纪美影视在线观看电视版使用方法| 黄色香蕉视频在线观看| 午夜男人的天堂| 少妇愉情理伦三级| 四虎精品一区二区| 天天做夜夜爱爱爱| aaaaa级少妇高潮大片免费看| 国产精品精品软件男同| 国产精品无码网站| 无码国产精品久久一区免费| 爱爱免费小视频| 日本一区二区免费视频| 亚洲成人网在线播放| 日本天堂在线播放| 日韩一级片大全| 丁香激情五月少妇| 精品人妻少妇嫩草av无码| 精品国产午夜福利在线观看| 精品一区二区6| 性欧美13一14内谢| 日本一区二区在线免费观看| 国产尤物在线播放| 99久久99久久精品免费看小说.| 免费不卡的av| 中文在线字幕观看| 中文字幕久久久久久久| 男人的午夜天堂| 国产在线观看免费视频软件| 美女被到爽高潮视频| 人妻丰满熟妇av无码久久洗澡| 国产精品老熟女一区二区| 欧美xxxooo| 91视频最新网址| 国产又粗又长又黄的视频| 91日韩中文字幕| 日韩av片在线免费观看| 成年人看的免费视频| 亚洲天堂精品一区| 国产极品视频在线观看| 国产探花视频在线| 潘金莲一级黄色片| 成年人午夜剧场| 丰满少妇高潮久久三区| japan高清日本乱xxxxx| 无码人妻一区二区三区在线视频| 成人自拍小视频| 亚洲色婷婷一区二区三区| 午夜69成人做爰视频| 亚洲少妇中文字幕| 一级特级黄色片| 在哪里可以看毛片| 永久免费毛片在线观看| 天堂av免费在线| 亚洲综合网在线| 成人做爰www看视频软件| 91精品国产自产| 97在线观看免费视频| 神马午夜精品91| 亚洲精品国产成人av在线| www.88av| 欧美成人久久久免费播放| 91视频综合网| 波多野结衣视频播放| 日韩女同一区二区三区| 日韩在线中文字幕视频| 大尺度做爰床戏呻吟舒畅| 成人片黄网站色大片免费毛片| www.涩涩爱| 国产精品偷伦视频免费观看了| 色婷婷精品久久二区二区密| 99久久久无码国产精品衣服| 成人免费黄色小视频| 久久久午夜精品福利内容| 日本在线观看网址| 亚洲成a人无码| 亚洲a v网站| 日本少妇激三级做爰在线| 久久久久久久久久久久久久久| 国产精品夜夜夜爽阿娇| 精品一区二区三区四区五区六区| 国产毛片久久久久久久| 性一交一黄一片| 日本人亚洲人jjzzjjz| 久久久久亚洲AV成人网人人小说| 久久亚洲无码视频| 日本少妇xxxx| 成人在线短视频| 在线免费看视频| 一本色道综合久久欧美日韩精品| 粉嫩av性色av蜜臀av网站| 最近中文字幕免费| 97人妻精品一区二区三区免费| www.99re6|