Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

IN C++. Hello, please help me to understand and write this code. I really don't know what should be the output of the code. If

image text in transcribed

IN C++. Hello, please help me to understand and write this code. I really don't know what should be the output of the code. If you can write 3 or 4 functions out of the 8 functions it would be great.

Thank you very much.

Problem statement A directed graph is graph, i.e., a set of objects (called vertices or nodes) that are connected together, where all the edges are directed from one vertex to another. In contrast, a graph where the edges are bidirectional is called an undirected graph. A graph can be formally define as G=(N,E) consisting of the set N of nodes and the set E of edges, which are ordered pairs of elements of N. It is further assumed in this project specification that any graph is finite with no directed or undirected cycles. An example is given below for directed graph. V = {1,2,3,4,5,6 E = {(1,2),(1,4),(2,3), (2,4),(2,5),(3,4),(5,3), (6,3), (6,5)} 4 (5 A graph has many useful applications in the real world, such as scheduling of tasks; network topology; family tree; data compression; literature citation, social connections and so on. This project requires you to develop an object oriented application of a graph. Example applications can be social connection network, equipment connections, course sequences, family trees and so on. The graph application should achieve the following base function: 1. A graph can be empty with no vertex or edge. 2. A graph can be either a directed graph or an undirected graph. 3. A graph can be added in vertices and edges. 4. A vertex of a graph can contain values - in theory, the values can be of any type. 5. A graph can be displayed by listing all the possible paths, each linking vertices. 6. A graph can be queried by given a starting vertex, listing the path this vertex leads. 7. A graph can be queried by given an edge, if this edge exists in the graph 8. A graph can be queried if a value is contained by any of its vertex

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2017 For Windows Web And Database Applications

Authors: Corinne Hoisington

1st Edition

1337102113, 978-1337102117

More Books

Students also viewed these Databases questions

Question

What attracts you about this role?

Answered: 1 week ago

Question

How many states in India?

Answered: 1 week ago

Question

HOW IS MARKETING CHANGING WITH ARTIFITIAL INTELIGENCE

Answered: 1 week ago

Question

Different types of Grading?

Answered: 1 week ago