Depth-First Path Traversal

Algorithm

A depth-first path-traversal uses a stack in order to remember directories as it scans. Initially, a directory is supplied which is scanned for directories in order to push them onto the stack. On every iteration, a directory is popped off the stack and similarly scanned in order to push any newly found directories. The algorithm terminates when the stack is empty.

  1. Push the first directory.
  2. Pop a directory from the queue.
  3. If the popped directory contains any directories, then push the directories.
  4. Repeat at 2 until the stack is empty.

Performance and Space Complexity

  • Worst case performance: $O(|E|)$
  • Worst case space complexity: $O(|V|)$

where $|E|$ is the number of edges and $|V|$ is the number of vertices.

Implementations


fuss/algorithms/path_traversal/depth-first.txt ยท Last modified: 2022/04/19 08:28 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.