https://github.com/mcleber/data_structures_and_algorithms_in_cpp
Data Structures in C++
https://github.com/mcleber/data_structures_and_algorithms_in_cpp
algorithms algorithms-datastructures data-structures data-structures-and-algorithms data-structures-cpp learning-data-structure
Last synced: 10 months ago
JSON representation
Data Structures in C++
- Host: GitHub
- URL: https://github.com/mcleber/data_structures_and_algorithms_in_cpp
- Owner: mcleber
- License: gpl-3.0
- Created: 2025-02-28T03:18:35.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-06T03:03:12.000Z (10 months ago)
- Last Synced: 2025-03-06T03:29:07.013Z (10 months ago)
- Topics: algorithms, algorithms-datastructures, data-structures, data-structures-and-algorithms, data-structures-cpp, learning-data-structure
- Language: C++
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures in C++
This is my study repository.
## Repository contents
- Simple Search Algorithm
- Binary Search Algorithm
- Stack
- Queue
- Bubble Sort
- Insertion Sort
- Selection Sort
- Quick Sort
- Shell Sort
- Merge Sort
- Sequential List Operations
- Linked List Operations
### Other Information
- Queue: FIFO: First In - First Out.
- Stack: LIFO: Last In - First Out.
- Merge Sort: Works well for large lists.
- Quick Sort: Fast and efficient method for large lists. Good for when we don't know the state of the list.
- Selection Sort: Good for small arrays.
- Shell Sort: Allows swapping values that are far apart. Works well for large lists.