Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CREATE A PROGRAM IN PYTHON: Create a matrix based graph representation. It will need to support the following operations. Ask the user how many points

CREATE A PROGRAM IN PYTHON:

Create a matrix based graph representation.

It will need to support the following operations.

Ask the user how many points there are.

Ask the user to label those points, ie "A", "B", "C"...

Define the matrix as a square matrix based on the number of points, also keep an array of the labels.

Repeatedly ask the user to define edges between two points. Add these edges to the matrix.

Have a list method that will list out all of the edges in the graph.

Sample Graph Lab Flow: How many vertices? 6 What is the label for vertex 1? A What is the label for vertex 2? B What is the label for vertex 3? C What is the label for vertex 4? D What is the label for vertex 5? E What is the label for vertex 6? F Define an edge by listing a pair of vertices, i.e. "A B", or -1 to stop. A B Added Edge A->B B A Added Edge B->A -1 Your edges are: AB, BA

Again, this must be written in PYTHON.

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

Graph Databases In Action

Authors: Dave Bechberger, Josh Perryman

1st Edition

1617296376, 978-1617296376

More Books

Students also viewed these Databases questions

Question

=+Show that un is finitely additive and countably subadditive on o.

Answered: 1 week ago

Question

4. How has e-commerce affected business-to-business transactions?

Answered: 1 week ago