#ifndef _binnode_hpp_ #define _binnode_hpp_ #include #include #define binNodeArray(T) binNode * template class binNode { public: T data; std::string pos; binNode *parent; binNode *lc; binNode *rc; binNode() { parent = NULL; lc = NULL; rc = NULL; } binNode(binNode *p, binNode *l, binNode *r) { parent = p; lc = l; rc = r; } ~binNode() { } bool operator>(binNode const &bn) { return data > bn.data; } bool operator<(binNode const &bn) { return data < bn.data; } bool operator==(binNode const &bn) { return data == bn.data; } }; #endif