File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
- # Data Structures and Algorithms in C++
1
+ # Data Structures in C++
2
2
3
3
This is my study repository.
4
4
5
5
## Repository contents
6
6
7
7
- Simple Search Algorithm
8
8
- Binary Search Algorithm
9
+ - Stack
10
+ - Queue
11
+ - Bubble Sort
12
+ - Insertion Sort
13
+ - Selection Sort
14
+ - Quick Sort
15
+ - Shell Sort
16
+ - Merge Sort
17
+ - Sequential List Operations
18
+ - Linked List Operations
19
+
20
+ ### Other Information
21
+ - Queue: FIFO: First In - First Out.
22
+ - Stack: LIFO: Last In - First Out.
23
+ - Merge Sort: Works well for large lists.
24
+ - Quick Sort: Fast and efficient method for large lists. Good for when we don't know the state of the list.
25
+ - Selection Sort: Good for small arrays.
26
+ - Shell Sort: Allows swapping values that are far apart. Works well for large lists.
27
+
You can’t perform that action at this time.
0 commit comments