What do we use to memorize BFS
Giant quiet vultures swoop quite carefully near 3 villages
What is the tracing concept of prims?
Start at specified node, choose shortest path, touch each node only once to not create a loop, and the record the cost
BFS
Queue
DFS
Stack
What do we need to start Kruskal
A list of all the edge costs in ascending order
Explain Dijkstra’s algorithm
First make a table labeling starting node as 0 and others as infinity, find the least costing path, adding it to zero, update the table and continue finding least costing path
B-trees insert from leaf nodes or from the top
Insert from the leaf
Use this to visualize: [link] (https://www.cs.usfca.edu/~galles/visualization/BTree.html)