AVL-Tree icon indicating copy to clipboard operation
AVL-Tree copied to clipboard

Implementation of an AVL tree in Java

Results 2 AVL-Tree issues
Sort by recently updated
recently updated
newest added

Hi, I cloned your repo to use it as a basis for an assignment to students (who have to extend it to support k-th smallest in log(n) time). One of...

I have a question regarding the last part of `remove()` if a Node containing the value to remove is not found. Here's what you've written: ``` else t = (t.left...