Skip to content

Commit c1cf80e

Browse files
committed
feat: AVLTreeNode 클래스 작성
1 parent dfc1c90 commit c1cf80e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package search.binarysearchtree;
2+
3+
import java.util.Comparator;
4+
5+
public class AVLTreeNode<E> extends LinkedBinarySearchTreeNode<E> {
6+
7+
public AVLTreeNode(E data, Comparator<E> comparator) {
8+
super(data, comparator);
9+
}
10+
}

0 commit comments

Comments
 (0)