摘要: # include # include struct BTNode { char data; struct BTNode * pLchild; //p是指针 L是左 child是孩子 struct BTNode * pRchild; }; void PostTraverseBTree(struct BTNode * pT); struct BTNode * Cr... 阅读全文
posted @ 2018-09-17 22:18 简简单单zjl 阅读(1902) 评论(0) 推荐(0) 编辑