Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AVL 트리 구현... (미완성) #41

Merged
merged 7 commits into from
Aug 23, 2020
Prev Previous commit
Next Next commit
feat: AVLTreeNode 클래스 작성
ksundong committed Aug 23, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit c1cf80e3b7db04dd1747397463ba0909334c8554
10 changes: 10 additions & 0 deletions yoonexample/src/main/java/search/binarysearchtree/AVLTreeNode.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package search.binarysearchtree;

import java.util.Comparator;

public class AVLTreeNode<E> extends LinkedBinarySearchTreeNode<E> {

public AVLTreeNode(E data, Comparator<E> comparator) {
super(data, comparator);
}
}