Data Structures & Algorithms Graphs Richard Newman based on book by R. Sedgewick and slides by S. Sahni.

Slides:



Advertisements
Similar presentations
Cpt S 223 – Advanced Data Structures Graph Algorithms: Introduction
Advertisements

 Graph Graph  Types of Graphs Types of Graphs  Data Structures to Store Graphs Data Structures to Store Graphs  Graph Definitions Graph Definitions.
1 Representing Graphs. 2 Adjacency Matrix Suppose we have a graph G with n nodes. The adjacency matrix is the n x n matrix A=[a ij ] with: a ij = 1 if.
Prof. Amr Goneid, AUC1 Analysis & Design of Algorithms (CSCE 321) Prof. Amr Goneid Department of Computer Science, AUC Part R5. Graphs.
Graph & BFS.
Chapter 9 Graph algorithms. Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
Connected Components, Directed Graphs, Topological Sort COMP171.
Introduction to Graphs
Introduction to Graphs What is a Graph? Some Example applications of Graphs. Graph Terminologies. Representation of Graphs. –Adjacency Matrix. –Adjacency.
Chapter 9 Graph algorithms Lec 21 Dec 1, Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
Connected Components, Directed Graphs, Topological Sort Lecture 25 COMP171 Fall 2006.
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.
Connected Components, Directed graphs, Topological sort COMP171 Fall 2005.
Balanced Binary Search Trees height is O(log n), where n is the number of elements in the tree AVL (Adelson-Velsky and Landis) trees red-black trees get,
Graph Operations And Representation. Sample Graph Problems Path problems. Connectedness problems. Spanning tree problems.
ALG0183 Algorithms & Data Structures Lecture 18 The basics of graphs. 8/25/20091 ALG0183 Algorithms & Data Structures by Dr Andy Brooks.
GRAPHS Education is what remains after one has forgotten what one has learned in school. Albert Einstein Albert Einstein Smitha N Pai.
Graph. Data Structures Linear data structures: –Array, linked list, stack, queue Non linear data structures: –Tree, binary tree, graph and digraph.
Graphs CS /02/05 Graphs Slide 2 Copyright 2005, by the authors of these slides, and Ateneo de Manila University. All rights reserved Definition.
Graphs. Motivating Problem Konigsberg bridge problem (1736): Konigsberg bridge problem (1736): C A B D ab c d e f g Starting in one land area, is it possible.
Been-Chian Chien, Wei-Pang Yang, and Wen-Yang Lin 6-1 Chapter 6 Graphs Introduction to Data Structure CHAPTER 6 GRAPHS 6.1 The Graph Abstract Data Type.
Intro to Graphs CSIT 402 Data Structures II. CSIT 402 Graph Introduction2 Graphs Graphs are composed of ›Nodes (vertices) Can be labeled ›Edges (arcs)
Chapter 9 – Graphs A graph G=(V,E) – vertices and edges
Lecture 13 Graphs. Introduction to Graphs Examples of Graphs – Airline Route Map What is the fastest way to get from Pittsburgh to St Louis? What is the.
Graph Dr. Bernard Chen Ph.D. University of Central Arkansas.
Chapter 2 Graph Algorithms.
GRAPHS CSE, POSTECH. Chapter 16 covers the following topics Graph terminology: vertex, edge, adjacent, incident, degree, cycle, path, connected component,
7.1 and 7.2: Spanning Trees. A network is a graph that is connected –The network must be a sub-graph of the original graph (its edges must come from the.
Lecture 10: Graphs Graph Terminology Special Types of Graphs
 What is a graph? What is a graph?  Directed vs. undirected graphs Directed vs. undirected graphs  Trees vs graphs Trees vs graphs  Terminology: Degree.
Nyhoff, ADTs, Data Structures and Problem Solving with C++, Second Edition, © 2005 Pearson Education, Inc. All rights reserved Graphs.
1 CS104 : Discrete Structures Chapter V Graph Theory.
Fundamental Data Structures and Algorithms (Spring ’05) Recitation Notes: Graphs Slides prepared by Uri Dekel, Based on recitation.
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.
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.
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.
Discrete Structures CISC 2315 FALL 2010 Graphs & Trees.
Chapter 6 Graphs. 2 Outline Definitions, Terminologies and Applications Graph Representation Elementary graph operations Famous Graph Problems.
Graphs Upon completion you will be able to:
Copyright © Curt Hill Graphs Definitions and Implementations.
Graphs and Paths : Chapter 15 Saurav Karmakar
Introduction to Graph Theory By: Arun Kumar (Asst. Professor) (Asst. Professor)
Chapter 20: Graphs. Objectives In this chapter, you will: – Learn about graphs – Become familiar with the basic terminology of graph theory – Discover.
Graphs Definition: a graph is an abstract representation of a set of objects where some pairs of the objects are connected by links. The interconnected.
Graphs. Graph Definitions A graph G is denoted by G = (V, E) where  V is the set of vertices or nodes of the graph  E is the set of edges or arcs connecting.
Lecture 20. Graphs and network models 1. Recap Binary search tree is a special binary tree which is designed to make the search of elements or keys in.
1 Data Structures and Algorithms Graphs. 2 Graphs Basic Definitions Paths and Cycles Connectivity Other Properties Representation Examples of Graph Algorithms:
رياضيات متقطعة لعلوم الحاسب MATH 226. Chapter 10.
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.
Balanced Binary Search Trees
Basic Concepts Graphs For more notes and topics visit:
Unit 3 Graphs.
CS120 Graphs.
Balanced Binary Search Trees
Graph Operations And Representation
Graph Algorithm.
Connected Components Minimum Spanning Tree
Graphs All tree structures are hierarchical. This means that each node can only have one parent node. Trees can be used to store data which has a definite.
What is a Graph? a b c d e V= {a,b,c,d,e} E= {(a,b),(a,c),(a,d),
Graph Operations And Representation
CSCI2100 Data Structures Tutorial
Graphs Chapter 7 Visit for more Learning Resources.
Graphs G = (V, E) V are the vertices; E are the edges.
GRAPHS G=<V,E> Adjacent vertices Undirected graph
Graph Operations And Representation
Graphs G = (V,E) V is the vertex set.
Chapter 9 Graph algorithms
Presentation transcript:

Data Structures & Algorithms Graphs Richard Newman based on book by R. Sedgewick and slides by S. Sahni

Definitions G = (V,E) V is the vertex set Vertices are also called nodes E is the edge set Each edge connects two different vertices. Edges are also called arcs

Definitions Directed edge has an orientation (u,v) Undirected edge has no orientation {u,v} Undirected graph => no oriented edge Directed graph (a.k.a. digraph) => every edge has an orientation uv uv

(Undirected) Graph

Directed Graph

Application: Communication NW Vertex = city, edge = communication link

Driving Distance/Time Map Vertex = city edge weight = driving distance/time

Street Map Some streets are one way.

Complete Undirected Graph Has all possible edges. n = 1 n = 2 n = 3 n = 4

Number Of Edges—Undirected Graph Each edge is of the form (u,v), u != v Number of such pairs in an n = |V| vertex graph is n(n-1) Since edge (u,v) is the same as edge (v,u), the number of edges in a complete undirected graph is n(n-1)/2 Number of edges in an undirected graph is |E| <= n(n-1)/2

Number Of Edges—Directed Graph Each edge is of the form (u,v), u != v Number of such pairs in an n = |V| vertex graph is n(n-1) Since edge (u,v) is NOT the same as edge (v,u), the number of edges in a complete directed graph is n(n-1) Number of edges in a directed graph is |E| <= n(n-1)

Vertex Degree Number of edges incident to vertex. degree(2) = 2, degree(5) = 3, degree(3) =

Sum Of Vertex Degrees Sum of degrees = 2e (e is number of edges)

In-Degree Of A Vertex in-degree is number of incoming edges indegree(2) = 1, indegree(8) =

Out-Degree Of A Vertex out-degree is number of outbound edges outdegree(2) = 1, outdegree(8) =

Sum Of In- And Out-Degrees each edge contributes 1 to the in- degree of some vertex and 1 to the out-degree of some other vertex sum of in-degrees = sum of out- degrees = e, where e = |E| is the number of edges in the digraph

Sample Graph Problems Path problems Connectedness problems Spanning tree problems Flow problems Coloring problems

Path Finding Path between 1 and Path length is 20

Path Finding Another path between 1 and 8 Path length is

Path Finding No path between 1 and

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

Example of Not Connected

Example of Connected

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

Connected Components

Communication Network 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 Removal of an edge that is on a cycle does not affect connectedness.

Cycles And Connectedness 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

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 Tree cost is sum of edge weights/costs

A Spanning Tree Spanning tree cost =

Minimum Cost Spanning Tree Spanning tree cost =

A Wireless Broadcast Tree Source = 1, weights = needed power. Cost = =

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

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

Adjacency Matrix Properties 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) Diagonal entries are zero Adjacency matrix of a digraph need not be symmetric.

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

Adjacency Lists Adjacency list for vertex i is a linear list of vertices adjacent from vertex i Graph is 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)

Linked Adjacency Lists Each adjacency list is a chain aList[1] aList[5] [2] [3] [4] 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 ] 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)

Summary Graph definitions, properties Graph representations