@@ -8,18 +8,18 @@ This repository contains:
8
8
9
9
Singly Linked List.
10
10
----------------
11
-   ;  ;  ;  ;  ;  ;  ;  ; a. Add Two Numbers Represented By Linked List.
12
-   ;  ;  ;  ;  ;  ;  ;  ; b. Bubble Sort in Linked List
13
-   ;  ;  ;  ;  ;  ;  ;  ; c. Merge Sort in Linked List
14
-   ;  ;  ;  ;  ;  ;  ;  ; d. Merge Sorted Linked List
15
-   ;  ;  ;  ;  ;  ;  ;  ; e. Reverse a singly Linked List with or without using stack
11
+   ;  ;  ;  ;  ;  ;  ;  ; Add Two Numbers Represented By Linked List.
12
+   ;  ;  ;  ;  ;  ;  ;  ; Bubble Sort in Linked List
13
+   ;  ;  ;  ;  ;  ;  ;  ; Merge Sort in Linked List
14
+   ;  ;  ;  ;  ;  ;  ;  ; Merge Sorted Linked List
15
+   ;  ;  ;  ;  ;  ;  ;  ; Reverse a singly Linked List with or without using stack
16
16
17
17
Doubly Linked List.
18
18
----------------
19
19
20
20
Circular Linked List.
21
21
----------------
22
-   ;  ;  ;  ;  ;  ;  ;  ; a. Sorted Insert
22
+   ;  ;  ;  ;  ;  ;  ;  ; Sorted Insert
23
23
24
24
Stack using array and Linked List.
25
25
--------------------------------
@@ -32,24 +32,24 @@ Priority Queue.
32
32
33
33
Sorting:
34
34
--------
35
-   ;  ;  ;  ;  ;  ;  ;  ; a. Bubble Sort
36
-   ;  ;  ;  ;  ;  ;  ;  ; b. Heap Sort
37
-   ;  ;  ;  ;  ;  ;  ;  ; c. Insertion Sort
38
-   ;  ;  ;  ;  ;  ;  ;  ; d. Merge Sort
39
-   ;  ;  ;  ;  ;  ;  ;  ; e. Quick Sort
40
-   ;  ;  ;  ;  ;  ;  ;  ; f. Selection Sort
35
+   ;  ;  ;  ;  ;  ;  ;  ; Bubble Sort
36
+   ;  ;  ;  ;  ;  ;  ;  ; Heap Sort
37
+   ;  ;  ;  ;  ;  ;  ;  ; Insertion Sort
38
+   ;  ;  ;  ;  ;  ;  ;  ; Merge Sort
39
+   ;  ;  ;  ;  ;  ;  ;  ; Quick Sort
40
+   ;  ;  ;  ;  ;  ;  ;  ; Selection Sort
41
41
42
42
Binary Search Tree
43
43
----------------
44
-   ;  ;  ;  ;  ;  ;  ;  ; a. Insertion
45
-   ;  ;  ;  ;  ;  ;  ;  ; b. Deletion
46
-   ;  ;  ;  ;  ;  ;  ;  ; c. Preorder traversal
47
-   ;  ;  ;  ;  ;  ;  ;  ; d. Inorder traversal
48
-   ;  ;  ;  ;  ;  ;  ;  ; e. Postorder traversal
49
-   ;  ;  ;  ;  ;  ;  ;  ; f. Level order traversal
50
-   ;  ;  ;  ;  ;  ;  ;  ; g. Find Height of a Binary Search Tree
51
-   ;  ;  ;  ;  ;  ;  ;  ; h. Check if a Tree is Binary Search Tree or not(2 methods)
52
-   ;  ;  ;  ;  ;  ;  ;  ; i. Find Max and Min element in Binary Search Tree
44
+   ;  ;  ;  ;  ;  ;  ;  ; Insertion
45
+   ;  ;  ;  ;  ;  ;  ;  ; Deletion
46
+   ;  ;  ;  ;  ;  ;  ;  ; Preorder traversal
47
+   ;  ;  ;  ;  ;  ;  ;  ; Inorder traversal
48
+   ;  ;  ;  ;  ;  ;  ;  ; Postorder traversal
49
+   ;  ;  ;  ;  ;  ;  ;  ; Level order traversal
50
+   ;  ;  ;  ;  ;  ;  ;  ; Find Height of a Binary Search Tree
51
+   ;  ;  ;  ;  ;  ;  ;  ; Check if a Tree is Binary Search Tree or not(2 methods)
52
+   ;  ;  ;  ;  ;  ;  ;  ; Find Max and Min element in Binary Search Tree
53
53
54
54
AVL trees
55
55
--------
@@ -58,14 +58,14 @@ AVL trees
58
58
59
59
Red Black Trees
60
60
--------
61
-   ;  ;  ;  ;  ;  ;  ;  ; a. Insertion
62
-   ;  ;  ;  ;  ;  ;  ;  ; b. Deletion
61
+   ;  ;  ;  ;  ;  ;  ;  ; Insertion
62
+   ;  ;  ;  ;  ;  ;  ;  ; Deletion
63
63
64
64
Tries
65
65
--------
66
-   ;  ;  ;  ;  ;  ;  ;  ; a. Insert
67
-   ;  ;  ;  ;  ;  ;  ;  ; b. Delete
68
-   ;  ;  ;  ;  ;  ;  ;  ; c. Search
66
+   ;  ;  ;  ;  ;  ;  ;  ; Insert
67
+   ;  ;  ;  ;  ;  ;  ;  ; Delete
68
+   ;  ;  ;  ;  ;  ;  ;  ; Search
69
69
70
70
Graphs
71
71
--------
@@ -87,17 +87,17 @@ Graphs
87
87
88
88
Greedy Algorithms
89
89
----------------
90
-   ;  ;  ;  ;  ;  ;  ;  ; a. Activity Selection Problem.
91
-   ;  ;  ;  ;  ;  ;  ;  ; b. Kruskal’s Minimum Spanning Tree Algorithm
92
-   ;  ;  ;  ;  ;  ;  ;  ; c. Dijkstra's algorithm for single source shortest paths
93
-   ;  ;  ;  ;  ;  ;  ;  ; d. Minimize Lateness problem
94
-   ;  ;  ;  ;  ;  ;  ;  ; e. Huffman Coding
90
+   ;  ;  ;  ;  ;  ;  ;  ; Activity Selection Problem.
91
+   ;  ;  ;  ;  ;  ;  ;  ; Kruskal’s Minimum Spanning Tree Algorithm
92
+   ;  ;  ;  ;  ;  ;  ;  ; Dijkstra's algorithm for single source shortest paths
93
+   ;  ;  ;  ;  ;  ;  ;  ; Minimize Lateness problem
94
+   ;  ;  ;  ;  ;  ;  ;  ; Huffman Coding
95
95
96
96
Dynamic Programming
97
97
----------------
98
-   ;  ;  ;  ;  ;  ;  ;  ; a. Rod Cutting Problem
99
-   ;  ;  ;  ;  ;  ;  ;  ; b. Knapsack Problem
100
-   ;  ;  ;  ;  ;  ;  ;  ; c. Fibonnaci Numbers
98
+   ;  ;  ;  ;  ;  ;  ;  ; Rod Cutting Problem
99
+   ;  ;  ;  ;  ;  ;  ;  ; Knapsack Problem
100
+   ;  ;  ;  ;  ;  ;  ;  ; Fibonnaci Numbers
101
101
102
102
103
103
Strings, Sets
0 commit comments