File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -32,33 +32,33 @@ Handwritten notes will be uploaded soon !
32
32
33
33
## Table of Contents
34
34
35
- ###Arrays
35
+ ### Arrays
36
36
* Integer Reverse
37
37
* Smallest Difference
38
38
* kadanes Algorithm
39
39
40
- ###Sorting
40
+ ### Sorting
41
41
* Bubble Sort
42
42
* Insertion Sort
43
43
* Selection Sort
44
44
* Merge Sort
45
45
* Quick Sort
46
46
* Count Sort
47
- ###Searching
47
+ ### Searching
48
48
* Linear Search
49
49
* Binary Search
50
50
* First Occurrence
51
51
* Last Occurrence
52
52
* Number Of Occurrences
53
53
54
- ###Matrix
54
+ ### Matrix
55
55
* Search Sorted Matrix
56
- ###Linked Lists
56
+ ### Linked Lists
57
57
* Singly Linked Lists
58
58
* Doubly Linked Lists
59
59
* Circular Singly Linked Lists
60
60
* Circular Doubly Linked Lists
61
- ###Stack
61
+ ### Stack
62
62
* Stack implementation using Array
63
63
* Stack implementation using Linked Lists
64
64
* Infix to Postfix
@@ -67,40 +67,40 @@ Handwritten notes will be uploaded soon !
67
67
* Postfix to Infix
68
68
* Prefix & Postfix evaluation
69
69
* Balanced Paranthesis
70
- ###Queue
70
+ ### Queue
71
71
* Queue Implementation using Array
72
72
* Queue Implementation using Linked Lists
73
73
* Circular Queue using Array
74
74
* Circular Queue using Linked Lists
75
75
* Double Ended Queues
76
- ###Trees
76
+ ### Trees
77
77
* Binary Tree
78
78
* Binary Search Tree
79
79
* Expression Tree
80
- ###Heap
80
+ ### Heap
81
81
* Max Heap
82
82
* Min Heap
83
- ###Trie
83
+ ### Trie
84
84
* Trie Implementation
85
85
* Prefix String Count
86
- ###Disjoint sets
86
+ ### Disjoint sets
87
87
* Union and Find
88
88
* Union by Rank and Find by Path Compression
89
- ###Graphs
89
+ ### Graphs
90
90
91
- ####Graph Representation
91
+ #### Graph Representation
92
92
* Adjacency Matrix
93
93
* Adjacency Lists
94
- ####Graph Traversal
94
+ #### Graph Traversal
95
95
* Breadth First Search
96
96
* Depth First Search
97
- ####Cycle Detection
97
+ #### Cycle Detection
98
98
* Detect Cycle in Directed Graph
99
99
* Detect Cycle in UnDirected Graph
100
- ####Minimum Spanning Trees
100
+ #### Minimum Spanning Trees
101
101
* Prims Algorithm
102
102
* Kruskals Algorithm
103
- ####Single Source Shortest Path
103
+ #### Single Source Shortest Path
104
104
* Dijikstra's Algorithm
105
105
* BellmanFord Algorithm
106
106
#### All Pair Shortest Path
You can’t perform that action at this time.
0 commit comments