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
+1
View File
@@ -0,0 +1 @@
#include "BiTree.h"
+12
View File
@@ -0,0 +1,12 @@
#ifndef BITREE_H
#define BITREE_H
class BiTree {
};
#endif //BITREE_H
+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)
View File