二叉树的层次遍历 时间:2017-01-15 15:53:19 【文件属性】: 文件名称:二叉树的层次遍历 文件大小:568B 文件格式:TXT 更新时间:2017-01-15 15:53:19 二叉树 这是二叉树的层次遍历、、void levelorder(BiTree root) { BiTree p,s[N]; int front,rear; front=rear=0; if(root) 立即下载