Solution: Graphs

See the solution that finds universal sink in an AdjacencyMatrix.

We'll cover the following

Task

Here is the solution that finds the universal sink in a graph GG. A universal sinkA universal sink, v, is also sometimes called a celebrity: Everyone in the room recognizes v, but v doesn’t recognize anyone else in the room. in a graph GG is a vertex that is the target of n1n − 1 edges and the source of no edges. Design and implement an algorithm that tests if a graph GG, represented as an AdjacencyMatrix, has a universal sink. This algorithm runs in O(n)O(n) time.

Solution

The code consists of the method findUniSinkOn(). This method is used to find a universal sink in a directed graph.

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy