121 Week 18 - Graphs Flashcards

1
Q

Graph

A

A set of nodes (or vertices) and edges (or arcs or links)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Simple graph

A

A graph that has no self-loop.
If a graph has a self-loop, graph analysis calculations change.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Directed and undirected graphs

A

Undirected graph: edges can be traversed either way.
Directed graph: each edge can only be traversed in its specified direction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Natural setting for a graph

A

Integers for edges called weights.
Names for nodes called identifiers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Hypergraph

A

A graph with nodes and hyperedges that capture k-wise relationships where k>2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why are graphs useful

A

They represent the concept of entities and relationships where relationships are pair-wise relationships.
E.g., graphs can represent the internet, social media networks, transit systems, artificial neural networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Subgraph

A

A subset of a graph G which contains some nodes and edges from G.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Induced subgraph

A

A subset of a graph G which contains some nodes and all edges that connect these nodes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Spanning subgraph/tree

A

A spanning subgraph is a subset of a graph G which contains all the nodes in G and some edges.
A spanning tree is a spanning subgraph where all nodes are connected, there are no cycles and, where n is the number of nodes, there are n-1 edges.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Minimum spanning tree

A

A spanning tree with the minimum total sum of edge weights.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Complementary graph

A

A subset of G which includes all nodes in G and all edges that are not in G.
Can be found by creating a graph with all nodes from G and edges connecting every node to all other nodes then removing all edges in G.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Density of a graph

A

A value between 0 and 1 that represents how well connected the graph is.
Density for undirected = 2e/n(n-1)
Density for directed = e/n(n-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Connectivity in undirected graphs

A

A undirected graph is connected if there is a path between any 2 vertices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Connectivity in directed graphs

A

A directed graph is strongly connected if any node can be reached from any other node.
A directed graph is weakly connected if it is not strongly connected but its undirected version is connected

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Graph ADT operations

A

void addNode(Node n)
void removeNode(Node n)
void addEdge(Node n, Node m)
void removeEdge(Node n, Node m)
boolean adjacent(Node n, Node m)
Node[] getNeighbours(Node n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Representing graphs through lists

A

A graph can be represented as a list of lists. Each list item is made up of a list where the first element is the name of the node and the second element is a list of its adjacent nodes.

17
Q

Time and space complexity of using lists

A

Time complexity:
- Adding node: O(1).
- O(N) for removing and finding nodes
- O(N) for adding and removing edges
- O(N) for adjacency check
Space complexity: O(N+E) for graphs with N nodes and E edges.
Lists are memory efficient but are not time efficient.

18
Q

Representing graphs through an adjacency matrix

A

A graph can be represented using a 2D array where each dimension is the number of nodes in the graph.
An element A[i][j] will be 1 if there is an edge between node i and node j and 0 if there is no edge.
An adjacency matrix is symmetric for undirected graphs: A[i][j] = A[j][i].
Modifying an undirected graph will change 2 cells. Modifying a directed graph will change 1 cell.

19
Q

Rows and columns in an adjacency matrix

A

The sum value of a collum in the matrix represents how many edges go into this node.
The sum value of a row in the matrix represents how many edges go out of this node.

20
Q

Time and space complexity of using adjacency matrix

A

Time complexity:
- O(N2) for adding a node.
- O(N2) for removing and finding nodes
- O(1) for adding and removing edges
- O(1) for adjacency check
Space complexity: O(n^2).
Adjacency matrices are time efficient but not memory efficient.

21
Q

Graph traversals

A

Graph traversals are used to discover whether, from a source node S, you can reach a specific node V and what the shortest path between the two nodes is.

22
Q

Depth first search traversal (DFS)

A
  1. Start at the source, and visit a neighbour (and mark it as visited),
  2. From that neighbour, visit one of its neighbours.
  3. Repeat until you hit an already visited node.
  4. At which point, you backtrack (i.e., go back), and visit another neighbour instead.
  5. Until you go back to the source.
    A stack can be used to keep track of the nodes to be visited next.
23
Q

Breadth first search traversal (BFS)

A
  1. Start at the source.
  2. Visit all nodes at distance 1 from source.
  3. Visit all nodes at the distance from source of depth.
  4. Repeat step 3 until all nodes have been visited.
    A queue can be used to keep track of the nodes to be visited next.
    When a BFS traversal is done, the traversed edges form a BFS tree. BFS trees give the shortest path from s, assuming now edge weights.