摘要: 二叉排序树非递归插入代码 1 #include 2 #include 3 #include 4 #include 5 typedef struct node 6 { 7 int val; 8 struct node* lchild; 9 struct... 阅读全文
posted @ 2015-03-29 23:46 千阳adam 阅读(177) 评论(0) 推荐(0) 编辑