欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

6-11-先序输出叶结点-函数题

程序员文章站 2022-06-07 20:46:17
...

6-11-先序输出叶结点-函数题

解题代码

void PreorderPrintLeaves(BinTree BT) {
	if (!BT) return;
	if (!BT->Left && !BT->Right) printf(" %c", BT->Data);
	if (BT->Left) PreorderPrintLeaves(BT->Left);
	if (BT->Right) PreorderPrintLeaves(BT->Right);
}

测试结果

6-11-先序输出叶结点-函数题

问题整理

1.注意空树的情况。