Skip to content

Instantly share code, notes, and snippets.

@marianocordoba
marianocordoba / BST.java
Created November 1, 2017 01:20
Java implementation of binary search tree
package tree;
/**
* Binary search tree implementation
*/
public class BST<T extends Comparable<? super T>> implements Tree<T> {
/**
* A class representing a node of the binary tree.
*/