/BST

Primary LanguageC++

BINARY SEARCH TREES

Data Structures and Algorithms

This repository contains my solutions to various Data Structures and Algorithms (DSA) questions related to binary search trees (BST). Binary Search Trees are a fundamental data structure in computer science, characterized by their hierarchical structure with nodes arranged in a way that for each node, values in the left subtree are lesser and values in the right subtree are greater. I am using the Coder Army Sheet for these questions here.

Contents

  1. Introduction
  2. How to Use
  3. Contributing
  4. License

Introduction

In this repository, you'll find solutions to a variety of binary search tree-related DSA questions. Each solution is implemented in the C++ programming language and organized into separate directories for easy navigation.

How to Use

Clone this repository to your local machine:

  1. git clone <repository-url>
  2. Navigate to the directory containing the solution you're interested in.
  3. Open the file in your preferred code editor to view the solution.
  4. Run the solution using an appropriate compiler or interpreter for the chosen programming language.

Contributing

Contributions to this repository are welcome! If you'd like to contribute a new solution, fix a bug, or improve an existing solution, feel free to open a pull request. Please adhere to the existing code style and ensure that your solution is well-documented.

License

This repository is licensed under the MIT License.