Searching, Sorting. Arizona State University 1

Similar documents
8.1. Chapter 8: Introduction to Search Algorithms. Linear Search. Linear Search. Linear Search - Example 8/23/2014. Introduction to Search Algorithms

LECTURE 08 SEARCHING AND SORTING ARRAYS

Java How to Program, 9/e. Copyright by Pearson Education, Inc. All Rights Reserved.

Binary Search and Worst-Case Analysis

Sorting Pearson Education, Inc. All rights reserved.

Quadratic: the time that it takes to sort an array is proportional to the. square of the number of elements.

Chapter 6 INTRODUCTION TO DATA STRUCTURES AND ALGORITHMS

Introduction to Data Structure

Computer Science 4U Unit 1. Programming Concepts and Skills Algorithms

CS 261 Data Structures. Big-Oh Analysis: A Review

Lecture 2: Algorithm Analysis

Algorithm Analysis. Algorithm Efficiency Best, Worst, Average Cases Asymptotic Analysis (Big Oh) Space Complexity

Analysis of Algorithm. Chapter 2

Algorithm Efficiency & Sorting. Algorithm efficiency Big-O notation Searching algorithms Sorting algorithms

Chapter 2: Complexity Analysis

For searching and sorting algorithms, this is particularly dependent on the number of data elements.

How do we compare algorithms meaningfully? (i.e.) the same algorithm will 1) run at different speeds 2) require different amounts of space

Bits, Bytes, and Precision

Choice of C++ as Language

CSE 373 APRIL 3 RD ALGORITHM ANALYSIS

Computer Science 210 Data Structures Siena College Fall Topic Notes: Complexity and Asymptotic Analysis

[ 11.2, 11.3, 11.4] Analysis of Algorithms. Complexity of Algorithms. 400 lecture note # Overview

Data Structure and Algorithm Homework #1 Due: 1:20pm, Tuesday, March 21, 2017 TA === Homework submission instructions ===

CS 6402 DESIGN AND ANALYSIS OF ALGORITHMS QUESTION BANK

CS301 - Data Structures Glossary By

8/2/10. Looking for something COMP 10 EXPLORING COMPUTER SCIENCE. Where is the book Modern Interiors? Lecture 7 Searching and Sorting TODAY'S OUTLINE

Ceng 111 Fall 2015 Week 12b

Algorithm Analysis. College of Computing & Information Technology King Abdulaziz University. CPCS-204 Data Structures I

PERFORMANCE OF VARIOUS SORTING AND SEARCHING ALGORITHMS Aarushi Madan Aarusi Tuteja Bharti

Arrays a kind of data structure that can store a fixedsize sequential collection of elements of the same type. An array is used to store a collection

Chapter 8 Search and Sort

Data Structures and Algorithms(1)

EE 368. Week 6 (Notes)

THE UNIVERSITY OF WESTERN AUSTRALIA

Notes slides from before lecture. CSE 21, Winter 2017, Section A00. Lecture 3 Notes. Class URL:

Binary Search and Worst-Case Analysis

Data Structures. Chapter 04. 3/10/2016 Md. Golam Moazzam, Dept. of CSE, JU

The Limits of Sorting Divide-and-Conquer Comparison Sorts II

Algorithm Analysis. Performance Factors

9. Heap : Priority Queue

Merge Sort Roberto Hibbler Dept. of Computer Science Florida Institute of Technology Melbourne, FL

DESIGN AND ANALYSIS OF ALGORITHMS. Unit 1 Chapter 4 ITERATIVE ALGORITHM DESIGN ISSUES

L14 Quicksort and Performance Optimization

Algorithm Analysis. (Algorithm Analysis ) Data Structures and Programming Spring / 48

Algorithm. Algorithm Analysis. Algorithm. Algorithm. Analyzing Sorting Algorithms (Insertion Sort) Analyzing Algorithms 8/31/2017

DATA STRUCTURES AND ALGORITHMS. Asymptotic analysis of the algorithms

Searching and Sorting

Unit 1 Chapter 4 ITERATIVE ALGORITHM DESIGN ISSUES

CSc 110, Spring 2017 Lecture 39: searching

SORTING AND SEARCHING

Algorithm Analysis. Gunnar Gotshalks. AlgAnalysis 1

Chapter 8 Algorithms 1

! Search: find an item in an array, return the. ! Sort: rearrange the items in an array into some. ! There are various methods (algorithms) for

Computer Algorithms. Introduction to Algorithm

Introduction. Arizona State University 1

CS 350 Algorithms and Complexity

Algorithm efficiency can be measured in terms of: Time Space Other resources such as processors, network packets, etc.

ECE 122. Engineering Problem Solving Using Java

A Balanced Introduction to Computer Science

Search,Sort,Recursion

CSE101-lec#19. Array searching and sorting techniques. Created By: Amanpreet Kaur & Sanjeev Kumar SME (CSE) LPU. LPU CSE101 C Programming

CISC 1100: Structures of Computer Science

O(n): printing a list of n items to the screen, looking at each item once.

What is an algorithm?

10/5/2016. Comparing Algorithms. Analyzing Code ( worst case ) Example. Analyzing Code. Binary Search. Linear Search

Arrays. Arizona State University 1

Time Analysis of Sorting and Searching Algorithms

Lecture 6 Sorting and Searching

Selection, Bubble, Insertion, Merge, Heap, Quick Bucket, Radix

Problems, Algorithms, Programs

Sorting Algorithms. Array Data is being arranged in ascending order using the bubble sort algorithm. #1 #2 #3 #4 #5 #6 #7

Chapter 3. The Efficiency of Algorithms INVITATION TO. Computer Science

Here we will only consider the problem of searching among the elements of an array. Intro Programming in C++

Algorithm Analysis. Spring Semester 2007 Programming and Data Structure 1

Searching. 11. Searching

Announcement. Submit assignment 3 on CourSys Do not hand in hard copy Due Friday, 15:20:00. Caution: Assignment 4 will be due next Wednesday

Algorithms and Data Structures

Analysis of Algorithms

Binary Search APRIL 25 TH, 2014

Hashing file organization

Pseudo code of algorithms are to be read by.

Introduction. two of the most fundamental concepts in computer science are, given an array of values:

Searching Algorithms/Time Analysis

10/11/2013. Chapter 3. Objectives. Objectives (continued) Introduction. Attributes of Algorithms. Introduction. The Efficiency of Algorithms

Algorithm Efficiency & Sorting. Algorithm efficiency Big-O notation Searching algorithms Sorting algorithms

CS302 Topic: Algorithm Analysis. Thursday, Sept. 22, 2005

Information Science 2

Outline and Reading. Analysis of Algorithms 1

Topics Applications Most Common Methods Serial Search Binary Search Search by Hashing (next lecture) Run-Time Analysis Average-time analysis Time anal

CSE 332 Winter 2015: Midterm Exam (closed book, closed notes, no calculators)

What is an algorithm? CISC 1100/1400 Structures of Comp. Sci./Discrete Structures Chapter 8 Algorithms. Applications of algorithms

4.1 COMPUTATIONAL THINKING AND PROBLEM-SOLVING

Today. CISC101 Reminders & Notes. Searching in Python - Cont. Searching in Python. From last time

11/19/2014. Arrays. Chapter 6: Arrays. Arrays. Arrays. Java Software Solutions for AP* Computer Science A 2nd Edition

CSE 421: Introduction to Algorithms Complexity

(6-2) Efficiency of Algorithms D & D Chapter 20. Instructor - Andrew S. O Fallon CptS 122 (July 11, 2018) Washington State University

SAMPLE OF THE STUDY MATERIAL PART OF CHAPTER 6. Sorting Algorithms

IE 495 Lecture 3. Septermber 5, 2000

ECE 2574: Data Structures and Algorithms - Big-O Notation. C. L. Wyatt

Sorting. Introduction. Classification

Transcription:

Searching, Sorting CSE100 Principles of Programming with C++, Fall 2018 (based off Chapter 9 slides by Pearson) Ryan Dougherty Arizona State University http://www.public.asu.edu/~redoughe/ Arizona State University 1

Search Algorithms Search: to locate a specific item in a list (array, vector, etc.) of information Two algorithms (methods) considered here: Linear search (also called Sequential Search) march through the list from beginning to end (or the other way), and if the element is found, stop. Binary search Arizona State University 2

Linear Search Example Array numlist contains 17 23 5 11 2 29 3 Searching for the the value 11, linear search examines 17, 23, 5, and 11 Searching for the the value 7, linear search examines 17, 23, 5, 11, 2, 29, and 3 Arizona State University 3

Linear Search Tradeoffs Benefits Easy algorithm to understand and to implement Elements in array can be in any order Disadvantage Inefficient (slow): for array of N elements, it examines N/2 elements on average for a value that is found in the array, N elements for a value that is not in the array Arizona State University 4

Binary Search Binary search requires that the array is in order. 1. Examine the value of the middle element 2. If the middle element has the desired value, done. Otherwise, determine which half of the array may have the desired value. Continue working with this portion of the array. 3. Repeat steps 1 and 2 until either the element with the desired value is found or there are no more elements to examine. Arizona State University 5

Binary Search Example Array numlist2 contains 2 3 5 11 17 23 29 Searching for the the value 11, binary search examines 11 and stops Searching for the the value 7, binary search examines 11, 3, 5, then stops Arizona State University 6

Binary Search Tradeoffs Benefit It is much more efficient than linear search. For an array of N elements, the number of comparisons is the smallest integer x such that. When N = 20,000, x is 15. However, It requires that the array elements be in order Arizona State University 7

Searching Array of Objects Search algorithms are not limited to arrays of integers When searching an array of objects or structures, the value being searched for is a member of an object or structure, not the entire object or structure Member in object/structure: key field Value used in search: search key Arizona State University 8

Sorting Algorithms Sort: arrange values into an order Alphabetical Ascending (smallest to largest) numeric Descending (largest to smallest) numeric Two algorithms considered here Bubble sort Selection sort Arizona State University 9

Bubble Sort 1. Compare 1 st two elements and exchange them if they are out of order. 2. Move down one element and compare 2 nd and 3 rd elements. Exchange if necessary. Continue until the end of the array. 3. Pass through the array again, repeating the process and exchanging as necessary. 4. Repeat until a pass is made with no exchanges. Arizona State University 10

Bubble Sort Example Array numlist3 contains Compare values 17 and 23. They are in order, so no exchange is needed. Compare values 23 and 5. Exchange them. Compare values 23 and 11. Exchange them. This is the end of the first pass. 17 23 5 11 17 5 23 11 17 5 11 23 Arizona State University 11

Bubble Sort Example (cont.) The second pass starts with the array from pass one 17 5 11 23 Compare values 17 and 5. Exchange them. 5 17 11 23 Compare 17 and 11. Exchange them. 5 11 17 23 Compare 17 and 23. No exchange is needed. This is the end of the second pass. Arizona State University 12

Bubble Sort Example (cont.) The third pass starts with the array from pass two 5 11 17 23 Compare values 5 and 11. No exchange is needed. Compare values 11 and 17. No exchange is needed. Compare values 17 and 23. No exchange is needed. Since no exchanges were made, the array is in order. Arizona State University 13

Bubble Sort Tradeoffs Benefit It is easy to understand and to implement Disadvantage It is inefficient due to the number of exchanges. This makes it slow for large arrays Arizona State University 14

Selection Sort 1. Locate the smallest element in the array and exchange it with the element in position 0. 2. Locate the next smallest element in the array and exchange it with element in position 1. 3. Continue until all of the elements are in order. Arizona State University 15

Selection Sort Example Array numlist contains 11 2 29 3 The smallest element is 2. Exchange 2 with the element at subscript 0. Now in order 2 11 29 3 Arizona State University 16

Selection Sort Example (cont.) 2 11 29 3 The next smallest element is 3. Exchange 3 with the element at subscript 1. 2 3 29 11 The next smallest element is 11. Exchange 11 with the element at subscript 2. 2 3 11 29 Arizona State University 17

Sorting Considerations Selection Sort is considered more efficient than Bubble Sort, due to the fewer number of exchanges that occur. Another efficient sorting algorithm will be seen in Chapter 14. Practical vs. Theoretical run-time, as well as additional memory cost and usage. You can call the sort function to sort an array or a vector. Arizona State University 18

Analysis of Algorithms Given two algorithms to solve a problem, what makes one better than the other? Efficiency of an algorithm is measured by space (computer memory used) time (how long to execute the algorithm) Analysis of algorithms is a more effective way to find efficiency than by using empirical data Arizona State University 19

Analysis of Algorithms: Terminology Computational Problem: a problem solved by an algorithm Instance of the Problem: a specific problem that is solved by the algorithm Size of an Instance: the amount of memory needed to hold the data for the specific problem Basic step: an operation in the algorithm that executes in a constant amount of time Examples of basic steps: exchange the contents of two variables compare two values Non-example of a basic step: find the largest element in an array Arizona State University 20

More Terminology Complexity of an algorithm: the number of basic steps required to execute the algorithm for an input of size N (N = number of input values) Worst-case complexity of an algorithm: the number of basic steps for input of size N that requires the most work Average case complexity function: the complexity for typical, average inputs of size N Arizona State University 21

Complexity Example Find the largest value in array A of size n 1. biggest = A[0] 2. indx = 0 3. while (indx < n) do 4. if (A[n] > biggest) 5. then 6. biggest = A[n] 7. end if 8. end while Analysis: Lines 1 and 2 execute once. The test in line 3 executes n times. The test in line 4 executes n times. The assignment in line 6 executes at most n times. Due to lines 3 and 4, the algorithm requires execution time proportional to n. Arizona State University 22

Algorithmic Complexity Given algorithms F and G with complexity functions f(n) and g(n) for input of size n If the ratio f(n)/g(n) approaches a constant value as n gets large, F and G have equivalent efficiency If the ratio f(n)/g(n) gets larger as n gets large, algorithm G is more efficient than algorithm F If the ratio f(n)/g(n) approaches 0 as n gets large, algorithm F is more efficient than algorithm G Arizona State University 23

Big-O Notation Function f(n) is O(g(n)) ( f is big O of g") for some mathematical function g(n) if the ratio f(n)/g(n) approaches a constant (including 0) as n gets large O(g(n)) defines a complexity class for the function f(n) and for the algorithm F Increasing complexity classes means faster rate of growth and less efficient algorithms Arizona State University 24