Skip to content

Instantly share code, notes, and snippets.

View leonzii's full-sized avatar
💭
Under Quarantine

Edgar leonzii

💭
Under Quarantine
View GitHub Profile
@leonzii
leonzii / AVLTree.java
Created May 22, 2016 00:53 — forked from antonio081014/AVLTree.java
This is a Generic Implementation of AVL tree in java.
import java.util.LinkedList;
import java.util.Queue;
public class AVLTree<T extends Comparable<T>> {
Node<T> root;
public AVLTree() {
root = null;
}