test change
test change2
test change3
test change
test change2
test change3
NOPI c# 处理excel的第三方插件。
二叉树
概念:每个结点最多有两棵子树,左子树和右子树,次序不可以颠倒。
三种遍历方法。
1:前序遍历 根节点->左节点->右节点
2:中序遍历 左节点->根节点->右节点
3:后序遍历 左节点->右节点->根节点
4:层次遍历 每一层从左到右输出