摘要: # 树 ## ch01二叉树 ### ch01_01二叉树的定义 ``` struct node { typename data; node* lchild; node* rchild; }; node* root=NULL; node* newNode(int v) { node* Node=new node; Node->data=v; Node->lchild=Node->rchild=NU 阅读全文
posted @ 2019-08-20 15:29 zengzhaojin 阅读(102) 评论(0) 推荐(0)
摘要: https://pintia.cn/problem-sets/994805342720868352/problems/994805458722734080 阅读全文
posted @ 2019-08-20 15:04 zengzhaojin 阅读(81) 评论(0) 推荐(0)