摘要: #include #include using namespace std;typedef struct node{ int key; node* lchild; node* rchild; node* parent; int color; int flag;} *PNODE,NODE;//Crea... 阅读全文
posted @ 2013-09-05 22:44 SKY_VIEW 阅读(551) 评论(0) 推荐(0) 编辑