An undirected weighted graph has vertices 1,2,3,4 and the following weighted edges:
Create the adjacency table for this graph.
Reconstruction of an undirected weighted graph from its adjacency table.
The weighted adjacency table of an undirected graph is:
Vertex1234Neighbors with weights(2,4),(3,1)(1,4),(3,2),(4,5)(1,1),(2,2),(4,3)(2,5),(3,3)
Reconstruct the graph and label each edge with its weight.
The adjacency table of an undirected graph is:
V12345Neighbors2,31,41,42,3,54
Determine the number of connected components in this graph.
Using the adjacency list below for an undirected graph, determine if the graph is connected:
V123456Adjacency List21,32,4365
Given the undirected unweighted graph with vertex set V={A,B,C,D,E} and edge set E={AB,AC,BD,CE,DE}, construct its adjacency table.
This question assesses the ability to determine if a graph is bipartite using a 2-colouring or partitioning algorithm.
The adjacency table below defines an undirected graph. Determine whether the graph is bipartite.
VABCDNeighborsB,CA,DA,DB,C
Given the adjacency list for an undirected graph:
VuvwxAdjacency Listv,wu,w,xu,v,xv,w
Decide if the graph has an Eulerian circuit. Justify your answer.
Consider a directed graph defined by the following adjacency table:
VPQRSOutgoing ArcsQ,RRPQ,R
Determine the in-degree and out-degree of each vertex.
This question assesses the ability to represent a directed weighted graph using an adjacency table (list).
Construct the adjacency table for the directed weighted graph with vertices A, B, C and arc weights: A→B(3), A→C(6), B→C(1), and C→A(4).
Given the adjacency table below for an undirected graph, list all edges and sketch the graph:
VertexPQRSTAdjacency ListQ,RP,R,SP,Q,TQR
Convert the undirected adjacency list below into its adjacency matrix, ordering vertices as A,B,C,D:
VABCDNeighborsB,DA,CB,DA,C
From the adjacency table below for an undirected graph, compute the degree of each vertex:
VabcdeAdjacency Listb,c,da,da,da,b,c,ed
Previous
Question Type 1: Constructing adjacency matrices for a given simple or directed graph
Next
Question Type 3: Using adjacency tables to reconstruct graphs or check graph properties
Number and Algebra
Functions
Geometry and Trigonometry
Statistics and Probability
Calculus