Skip to content

Commit 7296234

Browse files
authored
update README
1 parent d1a89dc commit 7296234

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
1-
# Data Structures and Algorithms in C++
1+
# Data Structures in C++
22

33
This is my study repository.
44

55
## Repository contents
66

77
- Simple Search Algorithm
88
- 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+

0 commit comments

Comments
 (0)