Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
11th Edition
ISBN: 9780134670942
Author: Y. Daniel Liang
Publisher: PEARSON
bartleby

Concept explainers

Expert Solution & Answer
Book Icon
Chapter 28.3, Problem 28.3.2CP

Explanation of Solution

Edge array of given graph:

int[][] edges = {{0, 1}, {0, 2}, {0, 3}, {0, 4}, {0, 5},{1, 0}, {1, 2}, {1, 3}, {1, 4}, {2, 0}, {2, 1}, {2, 3}, {2, 4},{3, 0}, {3, 1}, {3, 2}, {3, 4}, {3, 5},{4, 0}, {4, 1}, {4, 2}, {4, 3},{5, 0}, {5, 3}}

Explanation:

Here, “int[][]” is the data type of two dimensional array with variable “edges”. The edges values are initialized into an array.

List of edge objects for given graph:

java.util.ArrayList<Edge> list = new java.util.ArrayList<Edge>();

list.add(new Edge(0, 1));

list.add(new Edge(0, 2));

list.add(new Edge(0, 3)); 

list.add(new Edge(0, 4)); 

list.add(new Edge(0, 5)); 

Explanation:

Here, the object “list” for class “ArrayList<>” is initialized with “edge” object. Then the edge values added into list.

Adjacency matrix for given graph:

int[][] adjacencyMatrix = {

  {0, 1, 1, 1, 1, 1}, // node 0

  {1, 0, 1, 1, 1, 0}, // node 1

  {1, 1, 0, 1, 1, 0}, // node 2

  {1, 1, 1, 0, 1, 1}, // node 3

  {1, 1, 1, 1, 0, 0}, // node 4

  {1, 0, 0, 1, 0, 0}  // node 5

};

Explanation:

Here, the variable “adjacencyMatrix” in declared in type of two dimensional integer “int[][]” and the adjacency values are initialized into it.

Adjacency vertex list:

LinkedList<Integer> list[] = new LinkedList<>();

list[0].add(1); list[0].add(2); list[0].add(3); list[0].add(4); list[0].add(5);

list[1].add(0); list[1].add(2); list[1].add(3); list[1].add(4);

list[2].add(0); list[2].add(1); list[2].add(3); list[2]...

Blurred answer
Students have asked these similar questions
Please show starting time and finishing time for each vertex.  Thank you.
Consider the line from (5, 5) to (13, 9).Use the Bresenham’s line drawing algorithm to draw this line. You are expected to find out all the pixels of the line and draw it on a graph paper
Undirected graph is given with the list of edges. Build an adjacency matrix. Print the number of ones in adjacency matrix. Graph can contain multiple edges and loops. Input First line contains number of vertices n. Each of the next line contains one edge. Read the edges till the end of file. Output Build an adjacency matrix. Print the number of ones in adjacency matrix. Sample input 3 1 2 23 22 32 Sample output 5

Chapter 28 Solutions

Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)

Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education