二杈树(c语言链表实现)
摘要:
用例中的树的结构图 #include <stdio.h> #include <stdlib.h> typedef int ElemType; struct TreeNode { ElemType value; struct TreeNode *lChild, *rChild; }; typedef 阅读全文
posted @ 2020-08-03 17:00 哈哈哈天蝎 阅读(246) 评论(0) 推荐(0)
posted @ 2020-08-03 17:00 哈哈哈天蝎 阅读(246) 评论(0) 推荐(0)