递归算法对完全二叉树的前序遍历

《递归算法对完全二叉树的前序遍历》
《递归算法对完全二叉树的前序遍历》

 1 # include<iostream>
 2 # include<cstdio>
 3 using namespace std;
 4 int inorder(int i,int j)
 5 {
 6     if(i<=j)
 7         printf("%d ",i);
 8     if(2*i<=j)
 9         inorder(2*i,j);
10     if(2*i+1<=j)
11         inorder(2*i+1,j);
12     return 1;
13 }
14 int main()
15 {
16     inorder(1,5);
17 }

View Code

 

    原文作者:天天AC
    原文地址: https://www.cnblogs.com/sxmcACM/p/3467896.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞