Graphs Flashcards
Connected graphs
Every nodes is connected to every other node
Directed graph
All edges have a direction
Weighted graph
All edges have a weight
Labelled graph
All nodes have a label
Tree graph
Connected graph without circuits
Forest graph
Collection of non-connected tree graph
Subgraph
Part of a larger graph
Null graph
Graph with no edges
Trivial graph
One node
Simple graph
No loops, no parallel edges, undirected
Undirected graph
No direction
Complete graph
Contains all possible edges
Disconnected graph
Not every node can visit each other
Regular graph
Degree of all nodes are the same
Cyclic graph
Edges form a cycle in the graph
Acyclic graph
No cycles
Multigraph
Multiple edges between same pair of nodes or to itself
Minimum spanning tree
Tree of a connected, undirected and unweighted graph that connects all nodes in the graph with the smallest distance possible
Adjacency matrix
Records number of connections between nodes of a graph
Width of a graph
Maximum of the minimum distance between two nodes (largest distance between two nodes with the smallest possible edges used)
Walk in a graph
Sequence of edges that connect nodes
Trail
Walk with no repeated edges
Path
Walk with no repeated edges and no repeated nodes
Cycle
Path that starts and ends on the same node, the start and end node is an exception to no repeated nodes
Eulerian trail
Trail (no repeated edges) that includes all edges in a graph
Eulerian circuit
Eulerian trail with the same start and end node
Hamiltonian path
Path (no repeated edges or nodes) that includes all nodes in the graph
Hamiltonian cycle
Hamiltonian path that starts and ends at the same node
Depth First Search
Goes down one route until dead end and backtracks to repeat, follows a stack