二叉树的遍历

数据结构算法

二叉树的遍历


//先序遍历

void preorder(TreeNode * root)

{

if root==null

return;

cout<

你可能感兴趣的:(二叉树的遍历)