Podcast
Questions and Answers
Which keyword-to-algorithm cue is specific to Breadth-first search (BFS)?
Which keyword-to-algorithm cue is specific to Breadth-first search (BFS)?
- Serializing
- Maximum depth
- Binary search tree
- Maximum width (correct)
Which keyword-to-algorithm cue is specific to Depth-first search (DFS)?
Which keyword-to-algorithm cue is specific to Depth-first search (DFS)?
- Serializing
- Maximum depth (correct)
- Binary search tree
- Maximum width
Which keyword-to-algorithm cue is specific to Depth-first search (DFS) and represents the order of visiting nodes from left to right and then the node itself?
Which keyword-to-algorithm cue is specific to Depth-first search (DFS) and represents the order of visiting nodes from left to right and then the node itself?
- Serializing
- Post-order (correct)
- In-order
- Pre-order