Skip to content
Snippets Groups Projects
Commit 79c75d08 authored by WinJ's avatar WinJ
Browse files

AVLTree wording clarification

parent 39cca707
No related branches found
No related tags found
No related merge requests found
......@@ -19,9 +19,9 @@ import cse332.datastructures.trees.BinarySearchTree;
* lead to highly perplexing and erroneous behavior. Instead,
* continue using the existing BSTNode children array.
* 4. Ensure that the class does not have redundant methods
* 5. Cast children array to AVLNode whenever necessary in your
* AVLTree. This will result a lot of casts, so we recommend you make
* private methods that encapsulate those casts.
* 5. Cast a BSTNode to an AVLNode whenever necessary in your AVLTree.
* This will result a lot of casts, so we recommend you make private methods
* that encapsulate those casts.
* 6. Do NOT override the toString method. It is used for grading.
* 7. The internal structure of your AVLTree (from this.root to the leaves) must be correct
*/
......
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