disjoint sets with arrays
play

Disjoint Sets with Arrays Data Structures and Algorithms CSE 373 SP - PowerPoint PPT Presentation

Disjoint Sets with Arrays Data Structures and Algorithms CSE 373 SP 18 - KASEY CHAMPION 1 Warm Up TreeDisjointSet<E> state Collection<TreeSet> forest Dictionary<NodeValues, NodeLocations> nodeInventory Using the


  1. Disjoint Sets with Arrays Data Structures and Algorithms CSE 373 SP 18 - KASEY CHAMPION 1

  2. Warm Up TreeDisjointSet<E> state Collection<TreeSet> forest Dictionary<NodeValues, NodeLocations> nodeInventory Using the union-by-rank and path-compression optimized implementations behavior of disjoint-sets draw the resulting forest caused by these calls: makeSet(x)-create a new tree of size 1 and add to our forest 1.makeSet(a) findSet(x)-locates node with x 2.makeSet(b) and moves up tree to find root union(x, y)-append tree with y 3.makeSet(c) rank = 2 as a child of tree with x 4.makeSet(d) 5.makeSet(e) e Reminders: 6.makeSet(f) Union-by-rank: make the tree • 7.makeSet(h) with the larger rank the new f c b a d root, absorbing the other tree. 8.union(c, e) If ranks are equal pick one at 9.union(d, e) random, increase rank by 1 10.union(a, c) h g Path-compression: when • running findSet() update 11.union(g, h) parent pointers of all 12.union(b, f) encountered nodes to point 13.union(g, f) directly to overall root 14.union(b, c) Union(x, y) internally calls • findSet(x) and findSet(y) CSE 373 SP 18 - KASEY CHAMPION 2

  3. Warm Up TreeDisjointSet<E> state Collection<TreeSet> forest Dictionary<NodeValues, NodeLocations> nodeInventory Using the union-by-rank and path-compression optimized implementations behavior of disjoint-sets draw the resulting forest caused by these calls: makeSet(x)-create a new tree of size 1 and add to our forest 1.makeSet(a) findSet(x)-locates node with x 2.makeSet(b) and moves up tree to find root union(x, y)-append tree with y 3.makeSet(c) as a child of tree with x 4.makeSet(d) 5.makeSet(e) Reminders: 6.makeSet(f) Union-by-rank: make the tree • 7.makeSet(g) with the larger rank the new https://courses.cs.washington.edu/courses/cse373/18sp/files/slides/disjoint_set_warmup.pdf root, absorbing the other tree. 8.makeSet(h) If ranks are equal pick one at 9.union(c, e) random, increase rank by 1 10.union(d, e) Path-compression: when • running findSet() update 11.union(a, c) parent pointers of all 12.union(g, h) encountered nodes to point 13.union(b, f) directly to overall root 14.union(g, f) Union(x, y) internally calls • findSet(x) and findSet(y) 15.union(b, c) CSE 373 SP 18 - KASEY CHAMPION 3

  4. Administrivia Monday Tuesday Wednesday Thursday Friday 5/21 5/23 5/24 5/25 Disjoint Sets Implementing Interview Prep P vs NP Disjoint Sets HW 6 due HW 7 out 5/28 5/30 5/31 6/1 Memorial Day Final Review Final Review Tech Interview Prep HW 7 due 6/5 Final @ 8:30am Sorry, Kasey’s email is DEEP Want a meeting? Email me this week for times next week Have ANY grading questions/concerns, email Kasey by this weekend TA lead review TBA Alternative testing time TBA CSE 373 SP 18 - KASEY CHAMPION 4

  5. Optimized Disjoint Set Runtime makeSet(x) Without Optimizations O(1) With Optimizations O(1) findSet(x) Without Optimizations O(n) With Optimizations Best case: O(1) Worst case: O(logn) union(x, y) Without Optimizations O(n) Best case: O(1) Worst case: O(logn) With Optimizations CSE 373 SP 18 - KASEY CHAMPION 5

  6. Kruskal’s t m = time to make MSTs t f = time to find connected components t u = time to union KruskalMST(Graph G) O(V*t m ) initialize each vertex to be a connected component O(ElogE) / O(ElogV) sort the edges by weight foreach(edge (u, v) in sorted order){ O(V*t u +E*t f ) if(u and v are in different components){ add (u,v) to the MST Update u and v to be in the same component } t m = O(1) } t f = O(logV) t u = O(logV) KruskalMST(Graph G) initialize a disjointSet, call makeSet() on each vertex O(V) sort the edges by weight O(ElogV) foreach(edge (u, v) in sorted order){ O(E) if(findSet(u) != findSet(v)){ O(logV) add (u,v) to the MST O(logV) union(u, v) } O(V + ElogV + ElogV) Aside: O(V + ElogV + E) if you apply ackermann CSE 373 SP 18 - KASEY CHAMPION 6 }

  7. KruskalMST(Graph G) initialize a disjointSet, call makeSet() on each vertex sort the edges by weight foreach(edge (u, v) in sorted order){ if(findSet(u) != findSet(v)){ add (u,v) to the MST union(u, v) } } CSE 373 SP 18 - KASEY CHAMPION 7

  8. KruskalMST(Graph G) initialize a disjointSet, call makeSet() on each vertex sort the edges by weight foreach(edge (u, v) in sorted order){ if(findSet(u) != findSet(v)){ union(u, v) } } CSE 373 SP 18 - KASEY CHAMPION 8

  9. Implementation Use Nodes? In modern Java (assuming 64-bit JDK) each object takes about 32 bytes - int field takes 4 bytes - Pointer takes 8 bytes - Overhead ~ 16 bytes - Adds up to 28, but we must partition in multiples of 8 => 32 bytes Use arrays instead! - Make index of the array be the vertex number - Either directly to store ints or representationally - We implement makeSet(x) so that we choose the representative - Make element in the array the index of the parent CSE 373 SP 18 - KASEY CHAMPION 9

  10. Array Implementation rank = 0 rank = 3 rank = 3 11 1 0 12 15 6 2 13 14 16 17 3 4 5 7 10 18 8 9 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 -1 -1 -4 -1 1 1 2 2 2 2 2 2 1 1 6 6 7 7 7 7 7 7 -4 -1 11 11 12 12 12 12 11 11 15 15 15 15 17 17 Store (rank * -1) - 1 Each “node” now only takes 4 bytes of memory instead of 32 CSE 373 SP 18 - KASEY CHAMPION 10

  11. Practice rank = 1 rank = 2 rank = 2 rank = 0 13 3 6 5 9 12 0 4 7 10 15 14 8 16 1 11 2 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 0 0 -3 3 -1 -2 6 12 13 13 0 13 -3 12 12 12 CSE 373 SP 18 - KASEY CHAMPION 11

  12. Array Method Implementation makeSet(x) add new value to array with a rank of -1 findSet(x) Jump into array at index/value you’re looking for, jump to parent based on element at that index, continue until you hit negative number union(x, y) findSet(x) and findSet(y) to decide who has larger rank, update element to represent new parent as appropriate CSE 373 SP 18 - KASEY CHAMPION 12

  13. Graph Review Graph Definitions/Vocabulary - Vertices, Edges - Directed/undirected - Weighted - Etc… Graph Traversals - Breadth First Search - Depth First Search Finding Shortest Path - Dijkstra’s Topological Sort Minimum Spanning Trees - Primm’s - Kruskal’s Disjoint Sets - Implementing Kruskal’s CSE 373 SP 18 - KASEY CHAMPION 13

  14. Interview Prep Treat it like a standardized test - Cracking the Coding Interview - Hackerrank.com It’s a conversation! - Leetcode.com 1. T – Talk Typically 2 rounds 2. E – Examples 3. B – Brute Force Tech screen 4. O – Optimize “on site” interviews 5. W – Walk through 4 general types of questions 6. I - Implement - Strings/Arrays/Math 7. T – Test - Linked Lists - Trees - Hashing - Optional: Design CSE 373 SP 18 - KASEY CHAMPION 14

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend