Skip to content

Instantly share code, notes, and snippets.

@jacky860226
jacky860226 / size balanced tree.cpp
Created April 25, 2016 08:26
Size Balanced Tree
#ifndef SIZE_BALANCED_TREE
#define SIZE_BALANCED_TREE
template<typename T>
class sb_tree{
private:
struct node{
node *ch[2];
int s;
T data;
node(const T&d):s(1),data(d){}