Modify the Graph class presented in the section “Graph as ADTs” to include the following methods:
Public Graph()
//default constructor, creates an empty graph
Public Integer addVertex()

// Adds a vertex to the graph, returns the vertex index
public boolean isEdge(Integer v, Integer w) {
// Determines if an edge exists between vertices v and w
Add exception handling to the class as well.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.