1 2 3 4 5 6 7 8 9
#include "avlset.h" int main() { AvlSet< int, CmpOrd<int> > avlset; avlset.insert( 1 ); avlset.remove( 1 ); return 0; }