Campus Tour 2/23/ :26 AM Campus Tour Campus Tour

Slides:



Advertisements
Similar presentations
© 2004 Goodrich, Tamassia Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
Advertisements

Chapter 9 Greedy Technique. Constructs a solution to an optimization problem piece by piece through a sequence of choices that are: b feasible - b feasible.
Lecture 15. Graph Algorithms
© 2004 Goodrich, Tamassia Campus Tour1. © 2004 Goodrich, Tamassia Campus Tour2 Graph Assignment Goals Learn and implement the adjacency matrix structure.
© 2004 Goodrich, Tamassia Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
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.
IKI 10100: Data Structures & Algorithms Ruli Manurung (acknowledgments to Denny & Ade Azurat) 1 Fasilkom UI Ruli Manurung (Fasilkom UI)IKI10100: Lecture10.
1 Minimum Spanning Tree Prim-Jarnik algorithm Kruskal algorithm.
Spring 2007Shortest Paths1 Minimum Spanning Trees JFK BOS MIA ORD LAX DFW SFO BWI PVD
Chapter 9: Greedy Algorithms The Design and Analysis of Algorithms.
Greedy Algorithms Reading Material: Chapter 8 (Except Section 8.5)
Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
© 2004 Goodrich, Tamassia Minimum Spanning Trees1 Minimum Spanning Trees (§ 13.7) Spanning subgraph Subgraph of a graph G containing all the vertices of.
Greedy Algorithms Like dynamic programming algorithms, greedy algorithms are usually designed to solve optimization problems Unlike dynamic programming.
Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
1 CSE 417: Algorithms and Computational Complexity Winter 2001 Lecture 11 Instructor: Paul Beame.
CSC311: Data Structures 1 Chapter 13: Graphs II Objectives: Graph ADT: Operations Graph Implementation: Data structures Graph Traversals: DFS and BFS Directed.
CSC 213 Lecture 24: Minimum Spanning Trees. Announcements Final exam is: Thurs. 5/11 from 8:30-10:30AM in Old Main 205.
Theory of Computing Lecture 10 MAS 714 Hartmut Klauck.
Shortest Paths C B A E D F
10/2/2015 3:00 PMCampus Tour1. 10/2/2015 3:00 PMCampus Tour2 Outline and Reading Overview of the assignment Review Adjacency matrix structure (§12.2.3)
2IL05 Data Structures Fall 2007 Lecture 13: Minimum Spanning Trees.
Spring 2015 Lecture 11: Minimum Spanning Trees
0 Course Outline n Introduction and Algorithm Analysis (Ch. 2) n Hash Tables: dictionary data structure (Ch. 5) n Heaps: priority queue data structures.
GRAPHS 1. Outline 2  Undirected Graphs and Directed Graphs  Depth-First Search  Breadth-First Search.
Lecture 19 Greedy Algorithms Minimum Spanning Tree Problem.
© 2010 Goodrich, Tamassia Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
Minimum Spanning Tree: Prim’s & Kruskal’s Algorithms Presenter: Michal Karpinski.
Minimum- Spanning Trees
Graphs Upon completion you will be able to:
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.
© 2010 Goodrich, Tamassia Minimum Spanning Trees1 JFK BOS MIA ORD LAX DFW SFO BWI PVD
Graphs ORD SFO LAX DFW Graphs 1 Graphs Graphs
Breadth-First Search L0 L1 L2
Graphs 10/24/2017 6:47 AM Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and.
Shortest Paths C B A E D F Shortest Paths
14 Graph Algorithms Hongfei Yan June 8, 2016.
COMP9024: Data Structures and Algorithms
Lecture ? The Algorithms of Kruskal and Prim
Minimum Spanning Trees
Introduction to Algorithms
Minimum Spanning Trees
Minimum Spanning Trees
Shortest Paths and Minimum Spanning Trees
Shortest Paths C B A E D F Shortest Paths 1
Minimum Spanning Trees
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Lecture 22 Minimum Spanning Tree
Minimum Spanning Tree 11/3/ :04 AM Minimum Spanning Tree
Shortest Paths C B A E D F
Graphs.
Graphs.
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Campus Tour 11/16/2018 3:14 PM Campus Tour Campus Tour
Breadth-First Search L0 L1 L2 C B A E D F Breadth-First Search
Minimum Spanning Trees
Graphs Chapter 13.
Algorithms and Data Structures Lecture XII
Minimum Spanning Trees
Chapter 13 Graph Algorithms
Graphs ORD SFO LAX DFW Graphs Graphs
Minimum Spanning Tree Algorithms
Shortest Paths and Minimum Spanning Trees
Minimum Spanning Tree.
Breadth-First Search L0 L1 L2 C B A E D F 4/25/2019 3:12 AM
Minimum Spanning Trees
Weighted Graphs C B A E D F Sequences
Breadth-First Search L0 L1 L2 C B A E D F 5/14/ :22 AM
CSE 373: Data Structures and Algorithms
Breadth-First Search L0 L1 L2 C B A E D F 7/28/2019 1:03 PM
Presentation transcript:

Campus Tour 2/23/2019 12:26 AM Campus Tour Campus Tour

Outline and Reading Overview of the assignment Review Adjacency matrix structure (§6.2.3) Kruskal’s MST algorithm (§7.3.1) Partition ADT and implementation (§4.2.2) The decorator pattern (§6.5.1) The traveling salesperson problem Definition Approximation algorithm (§13.4.3) 2/23/2019 12:26 AM Campus Tour

Graph Assignment Goals Your task Frontend Learn and implement the adjacency matrix structure an Kruskal’s minimum spanning tree algorithm Understand and use the decorator pattern and various JDSL classes and interfaces Your task Implement the adjacency matrix structure for representing a graph Implement Kruskal’s MST algorithm Frontend Computation and visualization of an approximate traveling salesperson tour 2/23/2019 12:26 AM Campus Tour

Adjacency Matrix Structure v b Edge list structure Augmented vertex objects Integer key (index) associated with vertex 2D-array adjacency array Reference to edge object for adjacent vertices Null for non nonadjacent vertices u w u 1 v 2 w 1 2  a b 2/23/2019 12:26 AM Campus Tour

Kruskal’s Algorithm The vertices are partitioned into clouds We start with one cloud per vertex Clouds are merged during the execution of the algorithm Partition ADT: makeSet(o): create set {o} and return a locator for object o find(l): return the set of the object with locator l union(A,B): merge sets A and B Algorithm KruskalMSF(G) Input weighted graph G Output labeling of the edges of a minimum spanning forest of G Q  new heap-based priority queue for all v  G.vertices() do l  makeSet(v) { elementary cloud } setLocator(v,l) for all e  G.edges() do Q.insert(weight(e), e) while Q.isEmpty() e  Q.removeMin() [u,v]  G.endVertices(e) A  find(getLocator(u)) B  find(getLocator(v)) if A  B setMSFedge(e) { merge clouds } union(A, B) 2/23/2019 12:26 AM Campus Tour

Example G G 8 8 B 4 B 4 E 9 E 6 9 6 5 F 5 1 1 F C 3 C 3 11 11 2 2 7 H 7 H D D A 10 A 10 G G 8 8 B 4 B 4 9 E E 6 9 6 5 5 1 F 1 F C 3 3 11 C 11 2 2 7 H 7 H D D A A 10 10 2/23/2019 12:26 AM Campus Tour

Example (contd.) four steps two steps G G 8 8 B 4 B 4 E 9 E 6 9 6 5 F 1 1 F C 3 C 3 11 11 2 2 7 H 7 H D D A 10 A 10 four steps two steps G G 8 8 B 4 B 4 E E 9 6 9 6 5 5 1 F 1 F C 3 11 C 3 11 2 2 7 H 7 H D D A A 10 10 2/23/2019 12:26 AM Campus Tour

Partition Implementation A set is represented the sequence of its elements A position stores a reference back to the sequence itself (for operation find) The position of an element in the sequence serves as locator for the element in the set In operation union, we move the elements of the smaller sequence into to the larger sequence Worst-case running times makeSet, find: O(1) union: O(min(nA, nB)) Amortized analysis Consider a series of k Partiton ADT operations that includes n makeSet operations Each time we move an element into a new sequence, the size of its set at least doubles An element is moved at most log2 n times Moving an element takes O(1) time The total time for the series of operations is O(k  n log n) 2/23/2019 12:26 AM Campus Tour

Analysis of Kruskal’s Algorithm Graph operations Methods vertices and edges are called once Method endVertices is called m times Priority queue operations We perform m insert operations and m removeMin operations Partition operations We perform n makeSet operations, 2m find operations and no more than n - 1 union operations Label operations We set vertex labels n times and get them 2m times Kruskal’s algorithm runs in time O((n + m) log n) time provided the graph has no parallel edges and is represented by the adjacency list structure 2/23/2019 12:26 AM Campus Tour

Decorator Pattern Labels are commonly used in graph algorithms Auxiliary data Output Examples DFS: unexplored/visited label for vertices and unexplored/ forward/back labels for edges Dijkstra and Prim-Jarnik: distance, locator, and parent labels for vertices Kruskal: locator label for vertices and MSF label for edges The decorator pattern extends the methods of the Position ADT to support the handling of attributes (labels) has(a): tests whether the position has attribute a get(a): returns the value of attribute a set(a, x): sets to x the value of attribute a destroy(a): removes attribute a and its associated value (for cleanup purposes) The decorator pattern can be implemented by storing a dictionary of (attribute, value) items at each position 2/23/2019 12:26 AM Campus Tour

Traveling Salesperson Problem A tour of a graph is a spanning cycle (e.g., a cycle that goes through all the vertices) A traveling salesperson tour of a weighted graph is a tour that is simple (i.e., no repeated vertices or edges) and has has minimum weight No polynomial-time algorithms are known for computing traveling salesperson tours The traveling salesperson problem (TSP) is a major open problem in computer science Find a polynomial-time algorithm computing a traveling salesperson tour or prove that none exists 7 D B 4 2 5 2 F C 8 3 6 E A 1 Example of traveling salesperson tour (with weight 17) 2/23/2019 12:26 AM Campus Tour

TSP Approximation We can approximate a TSP tour with a tour of at most twice the weight for the case of Euclidean graphs Vertices are points in the plane Every pair of vertices is connected by an edge The weight of an edge is the length of the segment joining the points Approximation algorithm Compute a minimum spanning tree Form an Eulerian circuit around the MST Transform the circuit into a tour 2/23/2019 12:26 AM Campus Tour