# Data Structure Lab 3 **Repository Path**: nullland-zhang/data-structure-lab-3 ## Basic Information - **Project Name**: Data Structure Lab 3 - **Description**: This lab is about Binary Search Trees (BST) using a linked implementation. Assume that only integers are stored in the BST. 二叉搜索树 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-17 - **Last Updated**: 2021-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Data Structure Lab 3 ## Introduction This lab is about Binary Search Trees (BST) using a linked implementation. Assume that only integers are stored in the BST. 二叉搜索树 ## Author Code by ZHANGHAOHAN 201906150328 ## File structure . ├── main.cpp      **Main function and each .h file will be executed in there**\ ├── Node.h      **Task 1**\ ├── MyTree.h      **Task 2 & 3** #### Super