二叉树
摘要:
1、二叉树的遍历 (1)递归遍历 Java实现: C++实现: 1 #include<iostream> 2 3 using namespace std; 4 5 class TreeNode 6 { 7 public: 8 int data; 9 TreeNode *left; 10 TreeNo 阅读全文
posted @ 2018-03-14 23:49 lina2014 阅读(208) 评论(0) 推荐(0) 编辑
posted @ 2018-03-14 23:49 lina2014 阅读(208) 评论(0) 推荐(0) 编辑
posted @ 2018-03-14 20:07 lina2014 阅读(415) 评论(0) 推荐(0) 编辑