Traverse
↔ (process) to move across Graph & select Nodes
References
BFS
↔ Search Algo to Traverse breadth first, down Graph child layer by child layerDFS
↔ Search Algo to Traverse depth first down Graph entire child subtree & backtrackFibonacci Recursive
↔ assume sequence starts with 1. Example of BAD Recursive fn. Traverse down Fibonacci Tree until reach 1
function fibonacci(index: number) {
if(index <= 1) return 1
return fibonacci(index-1) + fibonacci(index-2)
}