Skip to content
Snippets Groups Projects
Commit 24655f31 authored by Adam Blank's avatar Adam Blank
Browse files

Updates AVLTree Class Comment

parent 957d41bf
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ import cse332.datastructures.trees.BinarySearchTree;
* TODO: Replace this comment with your own as appropriate.
*
* AVLTree must be a subclass of BinarySearchTree<E> and must use
* inheritance and callst o superclass methodst o avoid unnecessary
* inheritance and callst o superclass methods to avoid unnecessary
* duplication or copying of functionality.
*
* 1. Create a subclass of BSTNode, perhaps named AVLNode.
......@@ -24,7 +24,7 @@ import cse332.datastructures.trees.BinarySearchTree;
* penalized.
* 5. Cast children array to AVLNode whenever necessary in your
* AVLTree. This will result a lot of casts, so we recommend you make
* private methodst hat encapsulatet hose casts.
* private methods that encapsulate those casts.
* 6. Do NOT override the toString method. It is used for grading.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment