- 博客(2)
- 收藏
- 关注
原创 二叉树笔记(一)
/*由于创建二叉树时采用递归方式创建,所以不需要像链表那样进行头指针的更替,可以直接传入root方便观察*/ #include<iostream> #include<cstdlib> #include<queue> using namespace std; struct node { int data; node *Ltree; node *Rtree; }; //node(int x):valux(x),Ltree(nullptr),Rtre...
2020-07-17 14:57:54 95
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人