2015年7月3日

二叉树基本操作C代码

摘要: 1 #include 2 #include 3 #define LEN sizeof(struct ChainTree) 4 struct ChainTree 5 { 6 int num; 7 struct ChainTree *left; 8 struct ChainTree *right; 9 }; ... 阅读全文

posted @ 2015-07-03 20:48 J·Marcus 阅读(1224) 评论(0) 推荐(0) 编辑

导航