init BiTree Class

This commit is contained in:
2024-11-20 21:09:50 +08:00
parent afb74bb9c2
commit 882c36c956
4 changed files with 21 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.29)
project(homework4)
set(CMAKE_CXX_STANDARD 20)
add_executable(test1 test1.cpp
BiTree.cpp
BiTree.h)