4.3 Fundamentals of Algorithms
4.3 Fundamentals of Algorithms
4.3 Fundamentals of Algorithms
4.3.1 Graph-traversal
4.3.1.1 Simple graph-traversal algorithms
Be able to trace breadth-first and depth-first search algorithms and describe
typical applications of both.
4.3.2 Tree-traversal
4.3.2.1 Simple tree-traversal algorithms
Be able to trace the tree-traversal algorithms:
pre-order
post-order
in-order
In-Order: binary search tree, outputting the contents of a binary search tree
in ascending order.
ℹ Students will not be expected to recall the steps in Dijkstra's shortest path
algorithm.