摘要: 1 #include 2 3 typedef struct tagBinaryTree* Node; 4 typedef struct tagBinaryTree BinaryTree; 5 6 struct tagBinaryTree{ 7 int key; 8 Node lchild; 9 Node rchild; 10 ... 阅读全文
posted @ 2018-05-16 23:34 CHRIS-ZSY 阅读(390) 评论(0) 推荐(0) 编辑