6-5 先序输出叶结点 分数 10

6-5 先序输出叶结点 分数 10_第1张图片

void PreorderPrintLeaves(BinTree BT)
{
    if (!BT)
        return;

    if (!BT->Left && !BT->Right)
        printf(" %c", BT->Data);

    PreorderPrintLeaves(BT->Left);
    PreorderPrintLeaves(BT->Right);
}

你可能感兴趣的:(二叉树OJ专题训练,c语言,c++,算法,数据结构)