init BiTree Class
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
#include "BiTree.h"
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
#ifndef BITREE_H
|
||||||
|
#define BITREE_H
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class BiTree {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif //BITREE_H
|
||||||
@@ -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)
|
||||||
Reference in New Issue
Block a user