In this article, I will introduce the basic concept of Depth-First Search(DFS) and Breadth-First Search(BFS). Both focuses searching, but the difference is the way of doing it.
DFS
To understand DFS, you need to know stack and recursive function. I ...