vu

Notes for Vanderbilt University

View the Project on GitHub

Lecture 03-15-17

Discuss Exam

  1. Detect cycles
    • a. Toplogical sort
    • b. Ways
      • DFS with back edges
      • Divide into connected components, see for each there are k-1 edges in component of k vertices
  2. Cross edges
    • a. Undirected: 0
    • b. Directed: (n2)

Begin Dynamic Programming

DP Problems