Please enable JavaScript.
Coggle requires JavaScript to display documents.
Algorithm - Coggle Diagram
Algorithm
Graph and Tree
BST
The left and right subtree each must also be a binary search tree.
The left subtree of a node contains only nodes with keys lesser than the node’s key.
The right subtree of a node contains only nodes with keys greater than the node’s key.
Hash Table
Search, Delete and Insert in O(1)
BFS
Queue
Applications
P2P Networks
Web Crawlers
Navigation Systems
Network Broadcasting
DFS
Stack
Back Tracking
Applcations
Detecting cycle in a graph
Topological Sorting
scheduling jobs
Path Finding
Solving puzzles with only one solution
Arrays