Skip to content

Instantly share code, notes, and snippets.

@karthik996
karthik996 / binary-search-tree-cpp.cpp
Created July 2, 2016 03:34 — forked from mgechev/binary-search-tree-cpp.cpp
Simple implementation of binary search tree in C++.
#include <iostream>
#include <math.h>
using namespace std;
template <class T>
struct Node {
T value;
Node *left;
Node *right;