Sorting And Searching CSE116A,B 4/7/2019 B.Ramamurthy.

Slides:



Advertisements
Similar presentations
Heaps1 Part-D2 Heaps Heaps2 Recall Priority Queue ADT (§ 7.1.3) A priority queue stores a collection of entries Each entry is a pair (key, value)
Advertisements

AVL Trees1 Part-F2 AVL Trees v z. AVL Trees2 AVL Tree Definition (§ 9.2) AVL trees are balanced. An AVL Tree is a binary search tree such that.
Transform and Conquer Chapter 6. Transform and Conquer Solve problem by transforming into: a more convenient instance of the same problem (instance simplification)
Sorting Chapter Sorting Consider list x 1, x 2, x 3, … x n We seek to arrange the elements of the list in order –Ascending or descending Some O(n.
© 2006 Pearson Addison-Wesley. All rights reserved12 B-1 Chapter 12 (continued) Tables and Priority Queues.
Tirgul 4 Sorting: – Quicksort – Average vs. Randomized – Bucket Sort Heaps – Overview – Heapify – Build-Heap.
© 2006 Pearson Addison-Wesley. All rights reserved12 A-1 Chapter 12 Heaps.
Tirgul 4 Order Statistics Heaps minimum/maximum Selection Overview
Sorting CS-212 Dick Steflik. Exchange Sorting Method : make n-1 passes across the data, on each pass compare adjacent items, swapping as necessary (n-1.
Chapter 12 B Priority Queues. © 2004 Pearson Addison-Wesley. All rights reserved 12 B-2 The ADT Priority Queue: A Variation of the ADT Table The ADT priority.
Merge Sort. What Is Sorting? To arrange a collection of items in some specified order. Numerical order Lexicographical order Input: sequence of numbers.
Sorting. Pseudocode of Insertion Sort Insertion Sort To sort array A[0..n-1], sort A[0..n-2] recursively and then insert A[n-1] in its proper place among.
Sorting Chapter Sorting Consider list x 1, x 2, x 3, … x n We seek to arrange the elements of the list in order –Ascending or descending Some O(n.
Java Methods Big-O Analysis of Algorithms Object-Oriented Programming
The ADT Table The ADT table, or dictionary Uses a search key to identify its items Its items are records that contain several pieces of data 2 Figure.
HEAPS. Review: what are the requirements of the abstract data type: priority queue? Quick removal of item with highest priority (highest or lowest key.
Week 13 - Wednesday.  What did we talk about last time?  NP-completeness.
Course: Programming II - Abstract Data Types HeapsSlide Number 1 The ADT Heap So far we have seen the following sorting types : 1) Linked List sort by.
Algorithm Design Techniques, Greedy Method – Knapsack Problem, Job Sequencing, Divide and Conquer Method – Quick Sort, Finding Maximum and Minimum, Dynamic.
Tables and Priority Queues
Merge Sort 1/12/2018 5:48 AM Merge Sort 7 2   7  2  2 7
Advanced Sorting 7 2  9 4   2   4   7
Chapter 11 Sorting Acknowledgement: These slides are adapted from slides provided with Data Structures and Algorithms in C++, Goodrich, Tamassia and Mount.
Sorting.
Sorting With Priority Queue In-place Extra O(N) space
CSCE 3110 Data Structures & Algorithm Analysis
CSCE 3110 Data Structures & Algorithm Analysis
Priority Queues and Heaps
Binary Search Tree (BST)
Data Structures Using C++
Priority Queues © 2010 Goodrich, Tamassia Priority Queues 1
Sorting by Tammy Bailey
Priority Queues Chuan-Ming Liu
Chapter 7 Sorting Spring 14
Hashing Exercises.
Source: Muangsin / Weiss
Heaps © 2010 Goodrich, Tamassia Heaps Heaps
Bohyung Han CSE, POSTECH
Heaps 9/13/2018 3:17 PM Heaps Heaps.
Divide and Conquer.
Map interface Empty() - return true if the map is empty; else return false Size() - return the number of elements in the map Find(key) - if there is an.
Phil Tayco Slide version 1.0 May 7, 2018
Description Given a linear collection of items x1, x2, x3,….,xn
Objectives Introduce different known sorting algorithms
original list {67, 33,49, 21, 25, 94} pass { } {67 94}
CMSC 341: Data Structures Priority Queues – Binary Heaps
Complexity Present sorting methods. Binary search. Other measures.
CSC212 Data Structure - Section RS
© 2013 Goodrich, Tamassia, Goldwasser
Data Structures Review Session
Lecture 3 / 4 Algorithm Analysis
8/04/2009 Many thanks to David Sun for some of the included slides!
Priority Queues (Chapter 6.6):
Sub-Quadratic Sorting Algorithms
Sorting And Searching CSE116A,B 2/22/2019 B.Ramamurthy.
Sorting And Searching CSE116A,B 2/23/2019 B.Ramamurthy.
Topic 5: Heap data structure heap sort Priority queue
CSE 12 – Basic Data Structures
Sorting And Searching CSE116A,B 4/6/2019 B.Ramamurthy.
Merge Sort 4/10/ :25 AM Merge Sort 7 2   7  2   4  4 9
Priority Queues (Chapter 6):
CO4301 – Advanced Games Development Week 4 Binary Search Trees
Chapter 12 Heap ADT © 2011 Pearson Addison-Wesley. All rights reserved.
Computer Algorithms CISC4080 CIS, Fordham Univ.
Tables and Priority Queues
EE 312 Software Design and Implementation I
Heaps 9/29/2019 5:43 PM Heaps Heaps.
Divide-and-Conquer 7 2  9 4   2   4   7
CMPT 225 Lecture 16 – Heap Sort.
Presentation transcript:

Sorting And Searching CSE116A,B 4/7/2019 B.Ramamurthy

Introduction The problem of sorting a collection of keys to produce an ordered collection is one of the richest in computer science. The richness derives from the fact that there are a number of ways of solving the sorting problem. Sorting is a fascinating operation that provides a model for investigating many problems in Computer Science. Ex: analysis and comparison of algorithms, divide and conquer, space and time tradeoff, recursion etc. 4/7/2019 B.Ramamurthy

Sorting Comparison based: selection, insertion sort (with online animations) Divide and conquer: merge sort, quick sort (with animations from supplements of your text book) Priority Queue /Heap based: heap sort Assume: Ascending order for all our discussion 4/7/2019 B.Ramamurthy

Selection Sort Select the first smallest element, place it in first location (by exchanging contents of locations), find the next smallest, place it in the next location, and so on. We will look at an example, an algorithm, analyze the algorithm, and look at code implementation. 4/7/2019 B.Ramamurthy

Selection Sort: Example 10 8 16 2 6 4 2 8 6 10 16 4 2 4 6 10 16 8 2 4 6 10 16 8 Sorted array 2 4 6 8 16 10 2 4 6 8 10 16 4/7/2019 B.Ramamurthy

Selection Sort Pseudo Code Let cursor be pointer to first element of an n element list to be sorted. Repeat until cursor points to last but one element. 2.1 Search for the smallest element in the list starting from the cursor. Let it be at location target. 2.2 Exchange elements at cursor and target. 2.3 Update cursor to point to next element. 4/7/2019 B.Ramamurthy

Sort Analysis Let el be the list; n be the number of elements; cursor = 0; target = 0; while (cursor < n-1) 2.1.1 target = cursor; 2.1.2 for (i= cursor+1; i < n; i++) if (el[i] < el[target]) target =i; 2.2 exchange (el[target], el[cursor]); // takes 3 assignments 2.3 cursor++; (n-1) *4 + 2 *(n + (n-1) + (n-2) ..1) 4n – 4 + 2*n(n+1)/2 = 4n – 4 + n2 + n = n2 + 5n - 4 An2 + B n + C where A= 1, B = 5, C = -4; for large n, drop the constant, lower order term in n, and the multiplicative constant to get big-O notation O(n2) – quadratic sort 4/7/2019 B.Ramamurthy

Insertion Sort 10 8 16 2 6 4 Unsorted array 10 Trivially sorted 8 10 4/7/2019 B.Ramamurthy

Insertion Sort Pseudo Code Single element is trivially sorted; start with first element; Repeat for second to nth element of the list: 2.1 cursor = next location; 2.2 Find a location to insert for list[cursor] by comparing and shifting; let the location be target; 2.3 Insert list[target] = list[cursor] 4/7/2019 B.Ramamurthy

Insertion Sort Analysis cursor = 0; while (cursor < n) 2.1 cursor = cursor + 1; 2.2 temp = list[cursor] // save element to inserted 2.2.2 j = cursor; //find location 2.2.3 while (j > 0 && list[j-1] > temp ) list[j] = list[j-1]; //shift right j = j –1; // assert : location found or hit left end(j=0) 2.3 list[j] = temp; Worst case: O(n2) quadratic Best case : linear (when the list is already sorted) 4/7/2019 B.Ramamurthy

Merge Sort Divide and Conquer Divide the list into two subsets s1, and s2 (recurse) Sort s1 and s2 by divide and conquer (conquer) Merge the sorted s1 and s2. O(n log n) algorithm 4/7/2019 B.Ramamurthy

Merge Sort (s) mergeSort(s): If S.size() > 1 1. S1, S2  partition (S, n/2) 2. mergeSort(s1); 3. mergeSort(s2); 4. S  merge(s1,s2) Lets look at examples. 4/7/2019 B.Ramamurthy

Example partition 10 8 16 2 6 4 10 8 6 2 16 4 S1 S2 10 8 6 2 16 4 S21 S22 S11 S12 8 6 16 4 S121 S122 S221 S222 4/7/2019 B.Ramamurthy

Example merge 2 4 10 8 6 16 6 8 10 2 4 16 S1 S2 10 6 8 2 4 16 S21 S22 S11 S12 8 6 16 4 S121 S122 S221 S222 4/7/2019 B.Ramamurthy

Algorithm list merge(s1, s2) s  empty list while (!s1.empty() && !s2.empty()) // Assert: both lists non empty 2.1 if s1.firstElem() < s2.firstElem() s.insertLast(s1.removeFirst()); else s.insertLast(s2.removeFirst()); 3. //Assert: s1 is empty or s2 is empty 3.1 while (!s1.empty()) 3.2 while (!s2.empty()) 4. return s; 2*k n-k n + k n + c*n (c+1)*n O(n) 4/7/2019 B.Ramamurthy

Analysis of merge sort Running time is time spent each level merging the nodes: Number of levels: 1+ ceiling(log n) Since the time spent at each of the is O(n), we have the following result: Algorithm mergesort sorts a list of size n in O(n log n) time in the worst case. 4/7/2019 B.Ramamurthy

Quick Sort Recursive sort; divide and conquer Divide: select an element called the pivot; typically last or first element is chosen to be the pivot; partition the list into three lists: L: elements in S less than pivot E: elements in S equal to pivot (single element for list of distinct elements) G: elements in S greater than pivot Recurse: Recursively quick sort the lists L and G. Conquer: Form the sorted list by concatenating L, E and G. 4/7/2019 B.Ramamurthy

Quicksort Example pivot 10 8 2 6 16 4 2 10 8 6 16 10 8 6 null null Partition around pivot 4/7/2019 B.Ramamurthy

Quicksort Example pivot 10 8 2 6 16 4 2 4 6 8 10 16 2 16 10 8 6 16 6 8 null 6 8 10 10 8 8 10 null Concatenate {L}{pivot}{G} 10 null 4/7/2019 B.Ramamurthy

Quicksort Worst case: when the list is already sorted. Let si be the sum of all sizes of the nodes to be sorted at level i. In the worst case the number of levels is n. S0 = n S1 = n –1 since every element skews to one side; S2 = n –2 and so on. worst case running time is O(n + (n-1) + (n-2) + ..1) = O(n2) best case: O(n log n) 4/7/2019 B.Ramamurthy

Heap : Definition Heap is a loosely ordered complete binary tree. A heap is a complete binary tree with values stored in its nodes such that no child has a value greater than the value of its parent. A heap is a complete binary tree : 1. That is empty or 2a. Whose root contains a search key greater than or equal to both its children node. 2b. Whose left subtree and right subtree are heaps. 4/7/2019 B.Ramamurthy

Types of heaps Heaps can be “max” heaps or “min” heaps. Above definition was for a “max” heap. In a max-heap the root is higher than or equal to the values in its left and right child. In a min-heap the root is smaller than or equal to the values in its left and right child. 4/7/2019 B.Ramamurthy

ADT Heap createHeap ( ) destroyHeap ( ) empty ( ) heapInsert (Object newItem) Object heapDelete ( ) // always the root 4/7/2019 B.Ramamurthy

Example Consider data set: 6 3 5 9 2 10 1. Implement it as a complete binary tree. 2. Heap left sub-tree. 3. Heap right sub-tree. 4. Heap the root, left node and right node of root. Note : When heaping choose the largest of the two children node to move up for “max” heap. 4/7/2019 B.Ramamurthy

Example 1 6 9 5 3 2 10 6 3 5 9 2 10 2 3 6 9 10 3 2 5 10 9 6 3 2 5 4 4/7/2019 B.Ramamurthy

Delete Root Item In a max heap the root item is the largest and is the chosen one for deletion. 1. After deletion of root, two disjoint heaps result. 2. Place last node as a root, to form a semi-heap. 3. Use trickle-down to form a heap. Running time : 3*log N + 1 = O(log N) Consider a heap example discussed above. Delete root item. 4/7/2019 B.Ramamurthy

Insert An Item 1. Insert a node as a last node. 2. Trickle up (repeat for various levels) to form a heap. Consider inserting 15 into the heap of the “delete” example. Insert is also a O(log N) operation. 4/7/2019 B.Ramamurthy

Insert Node : Example 9 5 6 3 2 9 5 6 3 2 15 1 2 9 5 15 3 2 6 15 2 repeat 5 9 3 2 6 4/7/2019 B.Ramamurthy

Priority Queue Priority Queue implemented as a heap. Priority queue inserts are done according to some criteria known as “priority” Insert location are according to priority and delete are to the head of queue. PQueue constructor PQueueInsert PQueueDelete Data: Heap pQ; 4/7/2019 B.Ramamurthy

Heap Sort Heapsort: 1. Represent elements as a min-heap. 2. Delete item at root and add to result, as it is the smallest. 3. Heap, repeat step 2, until one item is left. 4. Delete the last item and add to result. O(N*log N) in the worst case! 4/7/2019 B.Ramamurthy