Review for Test 3 (Chapters 4-5) Flashcards
1
Q
Path
A
- Movement from one vertex to another by traversing edges
2
Q
Circuit
A
- Circuit
- When a path ends at the same vertex it started
3
Q
Euler Path
A
- A path that uses every edge once and only once but does not end up where it started
4
Q
Euler Circuit
A
- A circuit that uses every edge but never the same edge twice; begins and ends at the same vertex
5
Q
Hamiltonian Circuit
A
- A path that uses each vertex of the graph exactly once
6
Q
Planar Graph
A
- A graph that can be drawn so that no edges intersect each other
7
Q
Greedy Algorithm
A
- Start at a vertex
- Travel across the smallest number
- Don’t close circuit too quick
- Finish graph
8
Q
Edge-Picking Algorithm
A
- Start at the smallest number
- Keep picking small numbers until the circuit is complete
- Don’t end it too soon
9
Q
What is the difference between a path and a circuit?
A
- A path cannot repeat verticals or edges
- A circuit can repeat verticals but not edges
10
Q
Differences and similarities between a Euler Path and a Euler Circuit.
A
- They both travel every edge and hit every vertex
- The path starts at one vertex and ends at another
- The circuit starts at one vertex and ends at the one that it started at