From f8d136fd8e414b951363a091e6fdebd9b7c2215d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E5=9D=82=E6=98=B4?= Date: Wed, 20 Nov 2024 22:11:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E9=AA=8C=E4=B8=80=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homework4/test1.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/homework4/test1.cpp b/homework4/test1.cpp index 2f5f3c4..8b68c83 100644 --- a/homework4/test1.cpp +++ b/homework4/test1.cpp @@ -1,3 +1,6 @@ +/* + *二叉树采用二叉链存储结构存放,结点值为int 类型,设计一个递归算法求二叉树 bt 中所有叶子结点值之和 + */ #include #include"BiTree.h" using namespace std;