D1 - definitions Flashcards
DEFINE: Degree/Valency/Order of a vertex
the number of edges incident to it
DEFINE: Subgraph
a graph each of whose edges and vertices belong to the original graph. ( a part of a graph )
DEFINE: A Path
Finite sequence of edges that the end vertex of one edge is the start vertex of the next and no vertex appears more than once
DEFINE: A walk
a path where you are permitted to return to vertices more than once
DEFINE: Cycle
A closed path, the end vertex of the last edge is the start vertex of the first edge
DEFINE: Connected Graph
It is a connected if a path can be found between any two vertices
DEFINE: A loop
Is a edge that starts and finishes at the same vertex
DEFINE: A simple Graph
A graph where there are no loops and have no more than one edge connecting any pair of vertices
DEFINE: Digraph
A graph with directed edges ( the edges have a direction associated with them
DEFINE: A Tree
a connected graph with no cycles
DEFINE: Spanning tree
is subgraph which includes all vertices of the original graph and is also a tree
DEFINE: Bipartite Graph
A GRAPH consisting of two sets of vertices X and Y the edges only join a vertex in X with a vertex in Y not vertices within it’s set
DEFINE: A Complete Graph
A graph in which every vertex is directly connected by a edge to each other vertex
DEFINE: Isomorphic graph
Graphs that show the same information but are drawn differently
DEFINE: Weighted graph
a graph with numbers associated with each edge
DEFINE: Adjacency matrix
record the number of direct links between vertices
DEFINE: Distance Matrix
Records the weight on the edges where there is no weight this is indicated by a ‘-‘
DEFINE: MST Minimum Spanning tree
is a spanning tree such that the total length of it’s arcs is as small as possible, some times called a minimum connector
DEFINE: Eulerian graph
A graph with all even valencies
DEFINE: Semi Eulerian Graph
If two valencies are odd, and the rest even
DEFINE: Traversable
If it is possible to go through every arc once without taking your pen from the paper
DEFINE: Matching
a matching is the 1 to 1 pairing of some or all of the elements in set x with a element of set Y
DEFINE: Maximal matching
a matching in which the number of arcs is as large as possible
DEFINE: Complete Matching
A complete matching had n arcs, if both sets have n nodes