摘要: 注释的坑以后填链表解法 #include<stdio.h> #include<stdlib.h> struct node { int data; struct node *left; struct node *right; }; typedef struct node *tp; tp buildtr 阅读全文
posted @ 2019-01-20 11:09 kingdalf 阅读(22) 评论(0) 推荐(0)