在二叉树中求位于先序序列中第k个位置的结点的值

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 20:56   1669   0

编写递归算法,在二叉树中求位于先序序列中第k个位置的结点的值。

二叉链表类型定义:

typedef struct BiTNode {
    TElemType data;
    BiTNode  *lchild, *rchild;
} BiTNode, *BiTree;
实现函数如下:

TElemType GetElemType(BiTree bt,int &num,TElemType &e){
    if(bt){
        if(num == 1){
            e = bt -> data;
            return 0;
        }else{
            if(bt -> lchild){
                --num;
                GetElemType(bt -> lchild, num, e);
            }
            if(bt -> rchild){
                --num;
                GetElemType(bt -> rchild, num, e);
            }
        }
    }
}
TElemType PreOrder(BiTree bt, int k)
/* bt is the root node of a binary linked list, */
/* Preorder travel it and find the node whose   */
/* position number is k, and return its value.  */
/* if can't found it, then return '#'.          */
{
    TElemType e;
    e = '#';
    GetElemType(bt, k, e);
    return e;
}


分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP