Reference no: EM13165651
Using JAVA
Requirements: implement/update specific methods for the DFS of a graph; for at least 2 graphs (1 being the provided one), show the DFS order of vertices in the graph, and for each node, specify its parent node in the search (the node from which the currect node was reached). Moreover, display for each node the discovery and finishing time, to check that the Parenthesis Theorem holds true.
Approach:For counting the dfs time, you should set a global counter (let's name it time), which is set to 0 in the moment the search starts with the root vertex. At any moment the search starts with a new vertex (that is, justafter entering a new dfs) the counter has to be incremented by one; also it has to be incremented by one when the search from the current node ends (just before exit a dfs). For each node, calculate also the discovery and finishing time; for doing this, you may use two arrays (let's name them d[] for discovery and f[] for finishing). The discovery time of a given vertex v receives the value of the counter just when enter to the dfs for that vertex (that isd[v]=time, before incrementing time), and the finishing just before exit from that dfs (that is f[v]=time, before decrementing time).
Parentheses Theorem: In any depth first search, for any 2 vertices u and v, one of the following 3 conditions holds true:
- The intervals [d[u], f[u]] and [d[v], f[v]] are completely disjoint;
- The [d[u], f[u]] interval is completely contained within interval [d[v], f[v]], and u is a descendant of v in the dfs tree;
- The [d[v], f[v]] interval is completely contained within interval [d[u], f[u]], and v is a descendant of u in the dfs tree;
Design and implement a driver to show the following (check for 2 graphs; 1 is provided, including the starting vertex):
- Display the dfs starting from a specified vertex;
- Display the discovery/finishing time for each node in the graph;
- Show the Parentheses Theorem holds true, by mentioning the specific condition in each case (this has to me manually calculated and added in the documentation).
Input data: You should test your application and include the tests in your documentation for at least two graphs; one is mandatory to be this one provided below. It is represented in the G = (V, E) representation, where V is the vertices set, and E is the edges set. Please note that our graph is a directed one (that is edges have directions, thus, the presence of an (u, v) edge does not imply (v, u) is also present in the graph). Nevertheless, this has no impact on the algorithm and its implementation. The dfs should start with vertex 1.
V= {1, 2, 3, 4, 5, 6, 7}
E= {{1, 2}, {1, 6}, {2, 3}, {2, 4}, {2, 5}, {3, 5}, {4, 5}, {5, 1},{6, 4}, {6, 7}}
Design a circular double linked list
: Design a circular double linked list, for which the following operations should be implemented
|
How much energy is released by the fuel
: the combustion of a fuel is found to raise the temperature of 500cm^3 of water by 20degrees celecius. how much energy is released by the fuel?
|
Balanced thermochemical equation for the reaction
: Write a balanced thermochemical equation for the reaction with an energy term in kJ as part of the equation.
|
What is the molar mass of adrenaline
: Adrenaline is the hormone that triggers the release of extra glucose molecules in times of stress or emergency. A solution of 0.64 g of adrenaline in 36.0 g of CCl4 elevates the boiling point by 0.49°C. What is the molar mass of adrenaline?
|
Implement/update specific methods for the dfs of a graph
: show the DFS order of vertices in the graph, and for each node, specify its parent node in the search (the node from which the currect node was reached). Moreover, display for each node the discovery and finishing time, to check that the Parenthesis ..
|
Determine the amount of gain or loss
: Determine the amount of gain or loss that would be recorded due to the change in the Allowance to Reduce Inventory to Market account.
|
Calculate the theoretical yield of c2h5cl
: calculate the theoretical yield of c2h5cl when 140 g of c2h6 reacts with 234 g of cl2, assuming that c2h6 and cl2 react only to form c2h5cl and hcl.
|
Could the remaining black compound be the anhydrous copper
: From the ration of the mass of the black product to the initial 5g placed in the flask, could the remaining black compound be the anhydrous copper carbonate hydroxide molecule?
|
Determine the conversion efficiency
: how much energy (MJ) can be obtained from incineration and how much CO2 (kg/year) may be released in that year? 2) How much of that energy (MJ) can be actually converted into electric power if the conversion efficiency is 23%?
|