Javatpoint Logo
Javatpoint Logo

Warshall's Algorithm

Warshall's algorithm is used to determine the transitive closure of a directed graph or all paths in a directed graph by using the adjacency matrix. For this, it generates a sequence of n matrices. Where, n is used to describe the number of vertices.

R(0), ..., R(k-1), R(k), ... , R(n)

A sequence of vertices is used to define a path in a simple graph. In the kth matrix (R(k)), (rij(k)), the element's definition at the ith row and jth column will be one if it contains a path from vi to vj. For all intermediate vertices, wq is among the first k vertices that mean 1 ≤ q ≤ k.

The R(0) matrix is used to describe the path without any intermediate vertices. So we can say that it is an adjacency matrix. The R(n) matrix will contain ones if it contains a path between vertices with intermediate vertices from any of the n vertices of a graph. So we can say that it is a transitive closure.

Now we will assume a case in which rij(k) is 1 and rij(k-1) is 0. This condition will be true only if it contains a path from vi to vj using the vk. More specifically, the list of vertices is in the following form

vi, wq (where 1 ≤ q < k), vk. wq (where 1 ≤ q < k), vj 

The above case will be occur only if rik(k-1) = rkj(k-1) = 1. Here, k is subscript.

The rij(k) will be one if and only if rij(k-1) = 1.

So in summary, we can say that

rij(k) = rij(k-1) or (rik(k-1) and rkj(k-1))

Now we will describe the algorithm of Warshall's Algorithm for computing transitive closure

Warshall(A[1...n, 1...n]) // A is the adjacency matrix
R(0) ← A
for k ← 1 to n do
for i ← 1 to n do
for j ← to n do
R(k)[i, j] ← R(k-1)[i, j] or (R(k-1)[i, k] and R(k-1)[k, j])
return R(n)

Here,

  • Time efficiency of this algorithm is (n3)
  • In the Space efficiency of this algorithm, the matrices can be written over their predecessors.
  • Θ(n3) is the worst-case cost. We should know that the brute force algorithm is better than Warshall's algorithm. In fact, the brute force algorithm is also faster for a space graph.

Example of Transitive closure

In this example, we will consider two graphs. The first graph is described as follows:

Warshall's Algorithm

The matrix of this graph is described as follows:

Warshall's Algorithm

The second graph is described as follows:

Warshall's Algorithm

The matrix of this graph is described as follows:

Warshall's Algorithm

The main idea of these graphs is described as follows:

  • The vertices i, j will be contained a path if
  • The graph contains an edge from i to j; or
  • The graph contains a path from i to j with the help of vertex 1; or
  • The graph contains a path from i to j with the help of vertex 1 and/or vertex 2; or
  • The graph contains a path from i to j with the help of vertex 1, 2, and/or vertex 3; or
  • The graph contains a path from i to j with the help of any other vertices.

On the kth iteration, the algorithm will use the vertices among 1, …., k, known as the intermediate, and find out that there is a path exists between i and j vertices or not

Warshall's Algorithm

In a directed graph, the transitive closure with n vertices is used to describe the n-by-n Boolean matrix T. Where, elements in the ith row and jth column will be 1. This can occur only if it contains a directed path form ith vertex to jth vertex. Otherwise, the element will be zero. The transitive closure is described as follows:

Warshall's Algorithm

The adjacency matrix is a type of square matrix, which is used to represent a finite graph. In the graph, the element of a matrix is used to indicate whether pairs of vertices are adjacent or not. The adjacency matrix can also be known as the connection matrix, which has rows and columns. A simple labeled graph with the position 0 or 1 will be represented by the rows and columns. The position of 0 or 1 will be assigned in a graph on the basis of condition the whether Vi and Vj are adjacent or not. If the graph contains an edge between two nodes, then it will assign as 1. If the graph has no nodes, then it will assign as 0. The adjacency matrix is described as follows:

Warshall's Algorithm

A digraph is a pair of characters. The digraph is described as follows:

Warshall's Algorithm

Warshall's Algorithm (Matrix generation)

Recurrence relating elements R(k) to elements of R(k-1) can be described as follows:

R(k)[i, j] = R(k-1)[i, j] or (R(k-1)[i, k] and R(k-1)[k, j])

In order to generate R(k) from R(k-1), the following rules will be implemented:

Rule 1: In row i and column j, if the element is 1 in R(k-1), then in R(k), it will also remain 1.

Rule 2: In row i and column j, if the element is 0 in R(k-1), then the element in R(k) will be changed to 1 iff the element in its column j and row k, and the element in row i and column k are both 1's in R(k-1).

Warshall's Algorithm

Application of Warshall's algorithm to the directed graph

In order to understand this, we will use a graph, which is described as follow:

Warshall's Algorithm

For this graph R(0) will be looked like this:

Warshall's Algorithm

Here R(0) shows the adjacency matrix. In R(0), we can see the existence of a path, which has no intermediate vertices. We will get R(1) with the help of a boxed row and column in R(0).

In R(1), we can see the existence of a path, which has intermediate vertices. The number of the vertices is not greater than 1, which means just a vertex. It contains a new path from d to b. We will get R(2) with the help of a boxed row and column in R(1).

Warshall's Algorithm

In R(2), we can see the existence of a path, which has intermediate vertices. The number of the vertices is not greater than 2, which means a and b. It contains two new paths. We will get R(3) with the help of a boxed row and column in R(2).

Warshall's Algorithm

In R(3), we can see the existence of a path, which has intermediate vertices. The number of the vertices is not greater than 3, which means a, b and c. It does not contain any new paths. We will get R(4) with the help of a boxed row and column in R(3).

Warshall's Algorithm

In R(4), we can see the existence of a path, which has intermediate vertices. The number of the vertices is not greater than 4, which means a, b, c and d. It contains five new paths.

Warshall's Algorithm

Example 1:

In this example, we will assume A = {1, 2, 3, 4} and let R be the relation on A whose matrix is described as follows:

Warshall's Algorithm

Now we will use Warshall's algorithm to compute MR∞.

Solution:

Here, matrix is the starting point. So matrix is described as follows:

Warshall's Algorithm

Now we will assume W0 = MR and then successively compute W1, W2, W3, and W4. (If we have an MR which contains n * n matrix, in this case, we will assume W0 = WR and compute W1, W2, W3, …., Wn.) For each k>0, Wk is calculated with the help of row k and column k of Wk-1. So we can say that W1 is computed with the help of column 1 and row 1 of W0 = MR, W2 is calculated with the help of column 2 and row 2 of W1, and the same process will be followed for W3, W4, and so on. The step by step process to get Wk from Wk-1 is described as follow:

Step 1:

In this step, we will transfer all 1's in Wk-1 to the corresponding position of Wk. If we take k = 1 for this problem, then we get the following table:

Warshall's Algorithm

Step 2:

Now we will make of list separately of all the columns that have 1's in row k and all the rows that have 1's in column k. After separation, we will get columns 1, 2, and 4, and rows 1, 2, and 3.

Step 3:

In this step, we will pair each of the row numbers with each of the column numbers. If there is not 1 in the paired position, then we will add 1 in that position of W1. In all the empty positions, we will put 0.

The pairs which we get are described as follow:

(1, 1), (1, 2), (1, 4), (2, 1), (2, 2), (2, 4), (3, 1), (3, 2) and (3, 4).

The matrix with the help of these pairs is described as follows:

Warshall's Algorithm

Now we will repeat the same process for k = 2. The first step will provide us the following matrix:

Warshall's Algorithm

Using the second step, we will get the row numbers 1, 2, 3, 4 and column numbers 1, 2, 3, 4. With the help of third step, we will get all possible pairs of row numbers and column numbers for k = 2, which are described as follows:

(1, 1), (1, 2), (1, 3), (1, 4), (2, 1), (2, 2), (2, 3), (2, 4), (3, 1), (3, 2), (3, 3), (3, 4), (4, 1), (4, 2), (4, 3), and (4, 4).

The matrix with the help of these pairs is described as follows:

Warshall's Algorithm

In this example, we will also have to calculate W3 and W4, but we know that W3 and W4 will get the same result as W2. According to this algorithm, if an entry in Wk-1 is 1, then the entry of Wk will remain the same as 1. Hence in Wk+1, …, Wn.

Thus

Warshall's Algorithm

And the transition closure R can be defined as the total relation A*A, which contains every possible ordered pair of elements of A. So it can specify that everything in A is related by

R to everything in A.

Now we will use the Boolean operation ∧ and ∨ on {0, 1} so that we can understand this algorithm more formally. If Wij(k) is the (i, j) entry of Wk, then on the basis of the above-described steps, we can say that

wij(k) = w(k?1)ij ∨ (w(k?1)ik ∧ w(k?1)kj) 

According to the second step of this algorithm, if i exists in the row list and j exists in the column list, then w(k?1)ik∧w(k?1)kj=1will be 1. If the third step of this algorithm either shows wij(k) was already 1, which shows in the first step, or (i, j) is one of the pairs formed in the third step.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA