Skip to content

Latest commit

 

History

History

depth-first-search

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Depth-first Search

Difficulty: easy
Category: Graphs


You're given a Node class that has a name and an array of optional children nodes. When put together, nodes form an acyclic tree-like structure.

Implement the depthFirstSearch method on the Node class, which takes in an empty array, traverses the tree using the Depth-first Search approach (specifically navigating the tree from left to right), stores all of the nodes' names in the input array, and returns it.

If you're unfamiliar with Depth-first Search, we recommend watching the Conceptual Overview section of this question's video explanation before starting to code.

Sample Input:

graph =  A
      /  |  \
    B    C   D
  /   \   /   \
E      F G     H
      / \  \
      I   J  K

Sample Output:

["A", "B", "E", "F", "I", "J", "C", "D", "G", "K", "H"]