Depth-first and breadth-first search variants

437 Views Asked by At

Are there special names for the following?

  • two variants of depth first search: 1. the current node is visited before its children; 2. the current node is visited after its children;
  • two variants of breadth first search: 1. the current node is visited before its children; 2. the current node is visited after its children.

I wonder why Wikipedia is silent on this subject.