This document summarizes algorithms for graph traversal, specifically breadth-first search (BFS) and depth-first search (DFS). It defines some key graph terms like directed/undirected graphs and weighted/unweighted edges. It then explains the processes of BFS and DFS, with BFS using a queue and DFS using a stack. Sample steps and simulations of BFS and DFS on sample graphs are provided. Different orders for tree traversal like pre-order, in-order and post-order are also summarized.