Please enable JavaScript.
Coggle requires JavaScript to display documents.
Algorithms, Data Structures, sources - Coggle Diagram
Algorithms
sorting
Selection sort
insertion sort
heap sort
bubble sort
merge sort
quick sort
radix sort
count sort
bucket sort
cycle sort
tree sort
shell sort
tree sort
greedy
dijkstra's shortest path
Prim’s and Kruskal's Minimum Spanning Tree.
Optimization solution
minimum cost spanning tree
Approximatin solution
Knapsack problem
single source shortest path
travelling salesman
dynamic programming
Bit Masking.
travelling salesman problem
Shortest path in graph
chain matrix multliplicaiton
longest common subsequence
knapsack problem
divide and conquer
Merge sort
quick sort
binary search
strassen multiplication
run time recurrence relations
backtracking
N-queens
knapsack problem
branch and bound
0/1 knapsacj
tsp
lc searching counding
searching
Sequential search
Linear search
Interval serach
Binary search
Data Structures
Linked List
stacks and queues
Trees and Graphs
strings
sources
books
Introduction to algorithms by Thomas H Cormen
The algorithm design manual by Skiena
Programming pearls by John Bentley
Algorithms by Robert Sedgewick, Kevin Wayne
cracking the coding Interview By Gayle Laakmann
websites
visual algo
data structures succinctlye
Geeks for Geeks
Tutorials Point
courses