Skip to main content

3 posts tagged with "Algorithm"

View All Tags

· 2 min read

Overview

  • search algorithms for graphs and trees
  • used for unordered graph and tree
  • graph representation
    • adjacent list: space O(V+E)
    • adjacent matrix: space O(V^2)