Graph Operations And Representation

Slides:



Advertisements
Similar presentations
Weighted graphs Example Consider the following graph, where nodes represent cities, and edges show if there is a direct flight between each pair of cities.
Advertisements

IKI 10100: Data Structures & Algorithms Ruli Manurung (acknowledgments to Denny & Ade Azurat) 1 Fasilkom UI Ruli Manurung (Fasilkom UI)IKI10100: Lecture10.
Graphs Chapter 12. Chapter Objectives  To become familiar with graph terminology and the different types of graphs  To study a Graph ADT and different.
Data Structures Using C++
 Graph Graph  Types of Graphs Types of Graphs  Data Structures to Store Graphs Data Structures to Store Graphs  Graph Definitions Graph Definitions.
C++ Programming: Program Design Including Data Structures, Third Edition Chapter 21: Graphs.
ITEC200 – Week 12 Graphs. 2 Chapter Objectives To become familiar with graph terminology and the different types of graphs To study.
Graph & BFS.
Chapter 9 Graph algorithms. Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
Introduction to Graphs
Graphs Chapter 12. Chapter 12: Graphs2 Chapter Objectives To become familiar with graph terminology and the different types of graphs To study a Graph.
Spring 2010CS 2251 Graphs Chapter 10. Spring 2010CS 2252 Chapter Objectives To become familiar with graph terminology and the different types of graphs.
Graphs & Graph Algorithms 2 Nelson Padua-Perez Bill Pugh Department of Computer Science University of Maryland, College Park.
Chapter 9 Graph algorithms Lec 21 Dec 1, Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
Graphs G = (V,E) V is the vertex set. Vertices are also called nodes and points. E is the edge set. Each edge connects two different vertices. Edges are.
Fall 2007CS 2251 Graphs Chapter 12. Fall 2007CS 2252 Chapter Objectives To become familiar with graph terminology and the different types of graphs To.
Graphs & Graph Algorithms 2 Fawzi Emad Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Graph Operations And Representation. Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
Graph. Data Structures Linear data structures: –Array, linked list, stack, queue Non linear data structures: –Tree, binary tree, graph and digraph.
Chapter 9 – Graphs A graph G=(V,E) – vertices and edges
© 2006 Pearson Addison-Wesley. All rights reserved14 A-1 Chapter 14 Graphs.
GRAPHS CSE, POSTECH. Chapter 16 covers the following topics Graph terminology: vertex, edge, adjacent, incident, degree, cycle, path, connected component,
Graphs Chapter 12.
Data Structures & Algorithms Graphs
Graphs A graphs is an abstract representation of a set of objects, called vertices or nodes, where some pairs of the objects are connected by links, called.
Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Ver Chapter 13: Graphs Data Abstraction & Problem Solving with C++
COSC 2007 Data Structures II
Graphs Chapter 12. Chapter 12: Graphs2 Chapter Objectives To become familiar with graph terminology and the different types of graphs To study a Graph.
Data Structures & Algorithms Graphs Richard Newman based on book by R. Sedgewick and slides by S. Sahni.
Graphs 황승원 Fall 2010 CSE, POSTECH. 2 2 Graphs G = (V,E) V is the vertex set. Vertices are also called nodes and points. E is the edge set. Each edge connects.
GRAPHS. Graph Graph terminology: vertex, edge, adjacent, incident, degree, cycle, path, connected component, spanning tree Types of graphs: undirected,
Graph. Graphs G = (V,E) V is the vertex set. Vertices are also called nodes and points. E is the edge set. Each edge connects two different vertices.
Chapter 6 Graphs. 2 Outline Definitions, Terminologies and Applications Graph Representation Elementary graph operations Famous Graph Problems.
Chapter 20: Graphs. Objectives In this chapter, you will: – Learn about graphs – Become familiar with the basic terminology of graph theory – Discover.
Subject Four Graphs Data Structures. What is a graph? A data structure that consists of a set of nodes (vertices) and a set of edges that relate the nodes.
Graphs.
Graphs Chapter 20.
Chapter 13: The Graph Abstract Data Type
Data Structures 13th Week
Introduction to Graphs
Csc 2720 Instructor: Zhuojun Duan
Introduction to Graphs
Unit 3 Graphs.
Common final examinations
CS120 Graphs.
Graphs & Graph Algorithms 2
Graphs Chapter 13.
Graphs Chapter 11 Objectives Upon completion you will be able to:
Graphs.
Graph Operations And Representation
Instructor: Scott Kristjanson CMPT 125/125 SFU Burnaby, Fall 2013
Chapter 14 Graphs © 2006 Pearson Addison-Wesley. All rights reserved.
Graphs Chapter 7 Visit for more Learning Resources.
Graph Implementation.
Graphs G = (V, E) V are the vertices; E are the edges.
GRAPHS G=<V,E> Adjacent vertices Undirected graph
Chapter 16 1 – Graphs Graph Categories Strong Components
Graphs.
Graphs.
Graph Algorithms DS.GR.1 Chapter 9 Overview Representation
Graph Operations And Representation
Graphs.
Chapter 14 Graphs © 2011 Pearson Addison-Wesley. All rights reserved.
Graphs.
Graphs G = (V,E) V is the vertex set.
Chapter 9 Graph algorithms
Heaps Chapter 6 Section 6.9.
Introduction to Graphs
For Friday Read chapter 9, sections 2-3 No homework
Introduction to Graphs
Presentation transcript:

Graph Operations And Representation

Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems. Graph coloring problems. Flow network problems.

Path Finding Path between 1 and 8. Path length is 20. 2 3 8 1 10 4 5 9 11 6 7 Vertices represent cities and edges represent highways. Edge weights are distances or driving times. Depending on the context, path length may either be the number of edges on the path or the sum of the weights of the edges on the path. Path length is 20.

Another Path Between 1 and 8 2 3 8 10 1 4 5 9 11 6 7 Since a graph may have more than one path between two vertices, we may be interested in finding a path with a particular property. For example, find a path with minimum length Path length is 28.

Example Of No Path 2 3 8 10 1 4 5 9 11 6 7 No path between 2 and 9.

Connected Graph Undirected graph. There is a path between every pair of vertices.

Example Of Not Connected 2 3 8 10 1 4 5 9 11 6 7

Connected Graph Example 2 3 8 10 1 4 5 9 11 6 7 Determine whether an undirected graph is connected.

Connected Components A subgraph in which any two vertices are connected to each other by paths  It is connected to no additional vertices in the supergraph A vertex with no incident edges is itself a connected component Source: https://en.wikipedia.org/wiki/Connected_component_(graph_theory)

Connected Components

Connected Components 2 3 8 10 1 4 5 9 11 6 7

Connected Component A maximal subgraph that is connected. Cannot add vertices and edges from original graph and retain connectedness. A connected graph has exactly 1 component.

Not A Component 2 3 8 10 1 4 5 9 11 6 7 Determine connected components of an undirected graph

Connected Components Several algorithms exists A straightforward approach: To find all the connected components of a graph, loop through its vertices, starting a new breadth first or depth first search whenever the loop reaches a vertex that has not already been included in a previously found connected component. Source: https://en.wikipedia.org/wiki/Connected_component_(graph_theory) Reference: John Hopcroft and Robert Tarjan. 1973. Algorithm 447: efficient algorithms for graph manipulation. Commun. ACM 16, 6 (June 1973), 372-378. DOI=http://dx.doi.org/10.1145/362248.362272

Connected Components Source: https://www.cs.umd.edu/class/sum2005/cmsc451/components.pdf

Connected Components Source: https://www.cs.umd.edu/class/sum2005/cmsc451/components.pdf

Connected Components Source: https://www.cs.umd.edu/class/sum2005/cmsc451/components.pdf

Connected Components Source: https://www.cs.umd.edu/class/sum2005/cmsc451/components.pdf

Communication Network 2 3 8 10 1 4 5 9 11 6 7 Each edge is a link that can be constructed (i.e., a feasible link).

Communication Network Problems Is the network connected? Can we communicate between every pair of cities? Find the components. Want to construct smallest number of feasible links so that resulting network is connected.

Cycles And Connectedness 2 3 8 10 1 4 5 9 11 6 7 Removal of an edge that is on a cycle does not affect connectedness.

Cycles And Connectedness 2 3 8 1 10 4 5 9 11 6 7 Connected subgraph with all vertices and minimum number of edges has no cycles.

Tree Connected graph that has no cycles. n vertex connected graph with n-1 edges. In graph terminology, the term rooted tree is used to denote what we were earlier calling a tree (Chapter 12).

Spanning Tree Subgraph that includes all vertices of the original graph. Subgraph is a tree. If original graph has n vertices, the spanning tree has n vertices and n-1 edges.

Minimum Cost Spanning Tree 2 3 8 10 1 4 5 9 11 6 7 Tree cost is sum of edge weights/costs.

A Spanning Tree Spanning tree cost = 51. 2 4 3 8 8 1 6 10 2 4 5 4 4 3 9 8 11 5 6 2 7 6 7 Spanning tree cost = 51.

Minimum Cost Spanning Tree 2 4 3 8 8 1 6 10 2 4 5 4 4 3 5 9 8 11 5 6 2 In the communication networks area, we are interested in finding minimum cost spanning trees. 7 6 7 Spanning tree cost = 41.

A Wireless Broadcast Tree 2 4 3 8 8 1 6 10 2 4 5 4 4 3 5 9 8 11 5 6 2 Edge cost is power needed to reach a node. If vertex 1 broadcasts with power 2, only vertex 4 is reached. If it broadcasts with power 4, both 2 and 4 are reached. Min-broadcast rooted spanning tree is NP-hard. Cost of tree of previous slide becomes 26. 7 6 7 Source = 1, weights = needed power. Cost = 4 + 8 + 5 + 6 + 7 + 8 + 3 = 41.

Graph Representation Adjacency Matrix Adjacency Lists Linked Adjacency Lists Array Adjacency Lists

Adjacency Matrix 0/1 n x n matrix, where n = # of vertices A(i,j) = 1 iff (i,j) is an edge 1 2 3 4 5 2 3 1 4 5 1 1 1 1 1 1 1 1 1 1

Adjacency Matrix Properties 2 3 1 4 5 Diagonal entries are zero. Adjacency matrix of an undirected graph is symmetric. A(i,j) = A(j,i) for all i and j.

Adjacency Matrix (Digraph) 2 3 1 4 5 Diagonal entries are zero. Adjacency matrix of a digraph need not be symmetric.

Adjacency Matrix n2 bits of space For an undirected graph, may store only lower or upper triangle (exclude diagonal). (n-1)n/2 bits O(n) time to find vertex degree and/or vertices adjacent to a given vertex.

Adjacency Lists Adjacency list for vertex i is a linear list of vertices adjacent from vertex i. An array of n adjacency lists. aList[1] = (2,4) aList[2] = (1,5) aList[3] = (5) aList[4] = (5,1) aList[5] = (2,4,3) 2 3 1 4 5

Linked Adjacency Lists Each adjacency list is a chain. 2 3 1 4 5 aList[1] aList[5] [2] [3] [4] 2 4 1 5 5 5 1 2 4 3 Array length n simply means we need an array with n spots. A direct implementation using a Java array would need n+1 spots, because spot 0 would not be utilized. However, by using spot 0 for vertex 1, spot 1 for vertex 2, and so on, we could get by with a Java array whose length is actually n. Array Length = n # of chain nodes = 2e (undirected graph) # of chain nodes = e (digraph)

Array Adjacency Lists Each adjacency list is an array list. aList[1] 2 3 1 4 5 aList[1] aList[5] [2] [3] [4] Array Length = n # of list elements = 2e (undirected graph) # of list elements = e (digraph)

Weighted Graphs Cost adjacency matrix. C(i,j) = cost of edge (i,j) Adjacency lists => each list element is a pair (adjacent vertex, edge weight)

Number Of C++ Classes Needed Graph representations Adjacency Matrix Adjacency Lists Linked Adjacency Lists Array Adjacency Lists 3 representations Graph types Directed and undirected. Weighted and unweighted. 2 x 2 = 4 graph types 3 x 4 = 12 C++ classes

Abstract Class Graph template<class T> class graph { public: // ADT methods come here // implementation independent methods come here };

Abstract Methods Of Graph // ADT methods virtual ~graph() {} virtual int numberOfVertices() const = 0; virtual int numberOfEdges() const = 0; virtual bool existsEdge(int, int) const = 0; virtual void insertEdge(edge<T>*) = 0; virtual void eraseEdge(int, int) = 0; virtual int degree(int) const = 0; virtual int inDegree(int) const = 0; virtual int outDegree(int) const = 0;

Abstract Methods Of Graph // ADT methods (continued) virtual bool directed() const = 0; virtual bool weighted() const = 0; virtual vertexIterator<T>* iterator(int) = 0; virtual void output(ostream&) const = 0;