/data-structure

Data Structure and Algorithm course 3/66 KMUTNB

Primary LanguageC++

Data Structures and Algorithms in C++

This repository contains implementations of various data structures and algorithms in C++. It serves as a resource for learning and practicing fundamental concepts in computer science.

Table of Contents

  1. Introduction
  2. Data Structures
  3. Usage
  4. Contributing
  5. License

Introduction

Understanding data structures and algorithms is essential for every programmer. This repository aims to provide clear and concise implementations of commonly used data structures and algorithms in C++.

Data Structures

The following data structures are implemented in this repository:

Each data structure is implemented with appropriate methods for insertion, deletion, traversal, and other relevant operations.

Usage

You can clone this repository and compile the C++ files using a C++ compiler such as g++. For example:

g++ -o array data_structures/array.cpp
./array

Contributing

Contributions are welcome! If you find any bugs or want to add more data structures or algorithms, please feel free to open an issue or submit a pull request.

License

This project is licensed under the MIT License.