算法笔记-第九章-二叉树的遍历 二叉树的先序遍历 二叉树的中序遍历 二叉树的先序遍历 //二叉树的先序遍历 #include <cstdio> #include <vector> using namespace std; const int MAXN = 50; struct Node //用结构体表示左子树和右子树的数据 { int l, r; } nodes[MAXN]; vector<int>