Chapter 2 Flashcards
Define walk
route through a graph along arcs from one node to the next
Define path
walk where no node is visited more than once
Define trail
walk where no arc is visited more than once
Define cycle
walk where start and end node are the same and no node visited more than once
Define Hamiltonian cycle
cycle that includes all nodes
Define connected graph
graph where it is possible to get from one node to any other node via arcs
Define simple graph
no multiple arcs
Define digraph
graphs with directions on arcs
Define tree
connected graph with no cycles
Define spanning tree
tree that uses all nodes of parent graph
Define minimum spanning tree
spanning tree with sum of arc weights minimised
Define complete graph
every node is directly connected to every other arc
Define isomorphic graph
graphs that can be drawn differently but represent the same information
Define planar graph
graph drawn in a plane where no arcs meet except at nodes
Outline planarity algorithm
- Identify Hamiltonian cycle
- Draw regular polygon of HC and extra arcs on inside of HC
- List all edges inside polygon
- Choose any unlabelled edge and label I
- If any edges that cross labelled edge cross each other, NON PLANAR
- If not, label edge/s O
- Repeat 4 & 5 till done