Skip to content

Commit

Permalink
updated Tree README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitou committed Jul 26, 2024
1 parent 6a6f5bf commit 771cdc5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tree/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@

---

# Overview

- [Introduction](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#introduction)
- [Key Characteristics](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#key-characteristics)
- [Types of trees](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#types-of-trees)
- [Binary search tree](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#binary-search-tree)
- [Implementation](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#implementation)
- [Where to use BST](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#where-to-use-bst)
- [Use Cases](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#use-cases)
- [When to use](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#when-to-use)
- [Real-World Examples of BST](https://github.com/amaitou/DataStructures/blob/main/tree/README.md#real-world-examples-of-bst)

---

# Introduction

A tree is a data structure that simulates a hierarchical tree structure with a set of connected nodes. Each node contains a value and pointers to its children. Trees are widely used to represent hierarchical data, such as organizational structures, file systems, and more.
Expand Down

0 comments on commit 771cdc5

Please sign in to comment.