说明: #include "AATree.h" #include using namespace std; /** * Construct the tree. */ template AATree::AATree( const Comparable & notFound ) : ITEM_NOT_FOUND( notFound ) { nullNode = new AANode; nullNode->left = nullNode->right = nullNode; nullNode
<lx_agio> 上传 | 大小:54kb