LECTURE 08 SEARCHING AND SORTING ARRAYS

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

Searching, Sorting. Arizona State University 1

C/C++ Programming Lecture 18 Name:

! Search: find a given item in a list, return the. ! Sort: rearrange the items in a list into some. ! list could be: array, linked list, string, etc.

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

! Search: find a given item in a list, return the. ! Sort: rearrange the items in a list into some. ! list could be: array, linked list, string, etc.

Search,Sort,Recursion

! Search: find a given item in a list, return the. ! Sort: rearrange the items in a list into some. ! list could be: array, linked list, string, etc.

Ch 8. Searching and Sorting Arrays Part 1. Definitions of Search and Sort

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

LECTURE 04 MAKING DECISIONS

Lecture 6 Sorting and Searching

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

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

Chapter Objectives. List Processing. Chapter 10: Applications of Arrays and Strings. Java Programming: Program Design Including Data Structures

LECTURE 06 FUNCTIONS

QuickSort. CIS 15 : Spring 2007

*Starting Out with C++: From Control Structures through Objects, 7/E* by *Tony Gaddis* COMPUTER PROGRAMMING LECTURE 05 LOOPS IMRAN IHSAN

LECTURE 02 INTRODUCTION TO C++

Sorting and Searching Algorithms

Chapter 10 - Notes Applications of Arrays

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

Programming II (CS300)

(8-2) Arrays II H&K Chapter 7. Instructor - Andrew S. O Fallon CptS 121 (February 28, 2018) Washington State University

Lecture 2 Arrays, Searching and Sorting (Arrays, multi-dimensional Arrays)

Binary Search and Worst-Case Analysis

Lecture 15: Algorithms. AP Computer Science Principles

Sorting. Bringing Order to the World

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

Introduction to Arrays

Building Java Programs Chapter 13

Searching and Sorting

Programming II (CS300)

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

LECTURE 17. Array Searching and Sorting

CSc 110, Spring 2017 Lecture 39: searching

Programming 2. Topic 8: Linked Lists, Basic Searching and Sorting

High Institute of Computer Science & Information Technology Term : 1 st. El-Shorouk Academy Acad. Year : 2013 / Year : 2 nd

Searching & Sorting in Java Bubble Sort

8/5/10 TODAY'S OUTLINE. Recursion COMP 10 EXPLORING COMPUTER SCIENCE. Revisit search and sorting using recursion. Recursion WHAT DOES THIS CODE DO?

Sorting/Searching and File I/O. Sorting Searching Reading for this lecture: L&L

Chapter 6: Arrays. Starting Out with Games and Graphics in C++ Second Edition. by Tony Gaddis

Searching and Sorting (Savitch, Chapter 7.4)

CSE 143 Lecture 4. Implementing ArrayIntList; Binary Search. reading:

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

The University Of Michigan. EECS402 Lecture 07. Andrew M. Morgan. Sorting Arrays. Element Order Of Arrays

Binary Search and Worst-Case Analysis

Data Structures. Alice E. Fischer. Lecture 4, Fall Alice E. Fischer Data Structures L4... 1/19 Lecture 4, Fall / 19

Topic 14 Searching and Simple Sorts

LECTURE 11 STRUCTURED DATA

Topics. Sorting. Sorting. 1) How can we sort data in an array? a) Selection Sort b) Insertion Sort

Introduction to Computer Science Midterm 3 Fall, Points

Chapter 8 Search and Sort

CS 106 Introduction to Computer Science I

Overview of Sorting Algorithms

Data Structures and Algorithms for Engineers

SCJ2013 Data Structure & Algorithms. Bubble Sort. Nor Bahiah Hj Ahmad & Dayang Norhayati A. Jawawi

Programming II (CS300)

CSE 143 Lecture 16 (B)

Algorithm for siftdown(int currentposition) while true (infinite loop) do if the currentposition has NO children then return

LECTURE 18 AVL TREES

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

Sorting Algorithms. Selection Sort Algorithm

ESc101 : Fundamental of Computing

Bits, Bytes, and Precision

CSE 143 Lecture 14. Sorting

Recursion. Example R1

Sorting and Searching

Test Bank Ver. 5.0: Data Abstraction and Problem Solving with C++: Walls and Mirrors, 5 th edition, Frank M. Carrano

Linear Search. Sorting Algorithms. linear search code. Sorting in Ascending Order Selection Sort. Selection sort algorithm

Searching and Sorting

CSE 143 Lecture 2. reading:

Introduction. Sorting. Definitions and Terminology: Program efficiency. Sorting Algorithm Analysis. 13. Sorting. 13. Sorting.

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

CSE 2123 Sorting. Jeremy Morris

CS 2412 Data Structures. Chapter 10 Sorting and Searching

Binary Search APRIL 25 TH, 2014

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

Arrays and Applications

Recursive Methods and Problem Solving. Chris Kiekintveld CS 2401 (Fall 2010) Elementary Data Structures and Algorithms

CS313D: ADVANCED PROGRAMMING LANGUAGE

CSE 143 Lecture 22. Sorting. reading: 13.1, slides adapted from Marty Stepp and Hélène Martin

Sorting. Sorting in Arrays. SelectionSort. SelectionSort. Binary search works great, but how do we create a sorted array in the first place?

4. SEARCHING AND SORTING LINEAR SEARCH

ECE242. Fall (120 Minutes, closed book)

Columns A[0] A[0][0] = 20 A[0][1] = 30

Chapter 10 Sorting and Searching Algorithms

Arrays. Week 4. Assylbek Jumagaliyev

CSCE 206: Structured Programming in C++

CSCE 206: Structured Programming in C++

What is an algorithm?

Structured programming

LECTURE 26 PRIM S ALGORITHM

Sorting. Introduction. Classification

COSC 236 Section 101 Computer Science 1 -- Prof. Michael A. Soderstrand

More on Arrays CS 16: Solving Problems with Computers I Lecture #13

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

Sorting & Searching. Hours: 10. Marks: 16

Searches and Sorts. ICT Officers. September 2018

ECE 122. Engineering Problem Solving Using Java

Transcription:

PowerPoint Slides adapted from *Starting Out with C++: From Control Structures through Objects, 7/E* by *Tony Gaddis* Copyright 2012 Pearson Education Inc. COMPUTER PROGRAMMING LECTURE 08 SEARCHING AND SORTING ARRAYS IMRAN IHSAN ASSISTANT PROFESSOR AIR UNIVERSITY, ISLAMABAD INTRODUCTION TO SEARCH ALGORITHMS Search: locate an item in a list of information Two algorithms we will examine: Linear search Binary search 2 Lecture 08 - Searching and Sorting Arrays 1

INTRODUCTION TO SEARCH ALGORITHMS LINEAR SEARCH Also called the sequential search Starting at the first element, this algorithm sequentially steps through an array examining each element until it locates the value it is searching for. Array numlist contains: 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 3 INTRODUCTION TO SEARCH ALGORITHMS LINEAR SEARCH ALGORITHM set found to false; set position to 1; set index to 0 while index < number of elts. and found is false if list[index] is equal to search value found = true position = index end if add 1 to index end while return position 4 Lecture 08 - Searching and Sorting Arrays 2

INTRODUCTION TO SEARCH ALGORITHMS A LINEAR SEARCH FUNCTION int searchlist(int list[], int numelems, int value) { int index = 0; // Used as a subscript to search array int position = -1; // To record position of search value bool found = false; // Flag to indicate if value was found while (index < numelems &&!found) { if (list[index] == value) // If the value is found { found = true; // Set the flag position = index; // Record the value's subscript } index++; // Go to the next element } return position; // Return the position, or -1 } 5 INTRODUCTION TO SEARCH ALGORITHMS LINEAR SEARCH - TRADEOFFS Benefits: Easy algorithm to understand Array can be in any order Disadvantages: Inefficient (slow): for array of N elements, examines N/2 elements on average for value in array, N elements for value not in array 6 Lecture 08 - Searching and Sorting Arrays 3

INTRODUCTION TO SEARCH ALGORITHMS BINARY SEARCH Requires array elements to be in order 1. Divides the array into three sections: middle element elements on one side of the middle element elements on the other side of the middle element 2. If the middle element is the correct value, done. Otherwise, go to step 1. using only the half of the array that may contain the correct value. 3. Continue steps 1. and 2. until either the value is found or there are no more elements to examine 7 INTRODUCTION TO SEARCH ALGORITHMS BINARY SEARCH - EXAMPLE Array numlist2 contains: Searching for the the value 11, binary search examines 11 and stops Searching for the the value 7, linear search examines 11, 3, 5, and stops 8 Lecture 08 - Searching and Sorting Arrays 4

INTRODUCTION TO SEARCH ALGORITHMS BINARY SEARCH ALGORITHM Set first index to 0. Set last index to the last subscript in the array. Set found to false. Set position to -1. While found is not true and first is less than or equal to last Set middle to the subscript half-way between array[first] and array[last]. If array[middle] equals the desired value Set found to true. Set position to middle. Else If array[middle] is greater than the desired value Set last to middle - 1. Else Set first to middle + 1. End If. End While. Return position. 9 INTRODUCTION TO SEARCH ALGORITHMS A BINARY SEARCH FUNCTION int binarysearch(int array[], int size, int value) { int first = 0, // First array element } last = size - 1, middle, position = -1; bool found = false; // Last array element // Mid point of search // Position of search value // Flag while (!found && first <= last) { middle = (first + last) / 2; // Calculate mid point if (array[middle] == value) // If value is found at mid { found = true; position = middle; } else if (array[middle] > value) // If value is in lower half last = middle - 1; else first = middle + 1; // If value is in upper half } return position; 10 Lecture 08 - Searching and Sorting Arrays 5

INTRODUCTION TO SEARCH ALGORITHMS BINARY SEARCH - TRADEOFFS Benefits: Much more efficient than linear search. For array of N elements, performs at most log2n comparisons Disadvantages: Requires that array elements be sorted 11 INTRODUCTION TO SORTING ALGORITHMS Sort: arrange values into an order: Alphabetical Ascending numeric Descending numeric Two algorithms considered here: Bubble sort Selection sort 12 Lecture 08 - Searching and Sorting Arrays 6

INTRODUCTION TO SORTING ALGORITHMS BUBBLE SORT Concept: Compare 1 st two elements If out of order, exchange them to put in order Move down one element, compare 2nd and 3rd elements, exchange if necessary. Continue until end of array. Pass through array again, exchanging as necessary Repeat until pass made with no exchanges 13 INTRODUCTION TO SORTING ALGORITHMS EXAMPLE FIRST PASS Array numlist3 contains: compare values 17 and 23 in correct order, so no exchange compare values 23 and 5 not in correct order, so exchange them compare values 23 and 11 not in correct order, so exchange them 14 Lecture 08 - Searching and Sorting Arrays 7

INTRODUCTION TO SORTING ALGORITHMS EXAMPLE SECOND PASS After first pass, array numlist3 contains: compare values 17 and 5 not in correct order, so exchange them compare values 17 and 11 not in correct order, so exchange them compare values 17 and 23 in correct order, so no exchange 15 INTRODUCTION TO SORTING ALGORITHMS EXAMPLE THIRD PASS After second pass, array numlist3 contains: compare values 5 and 11 in correct order, so no exchange compare values 11 and 17 in correct order, so no exchange compare values 17 and 23 in correct order, so no exchange No exchanges, so array is in order 16 Lecture 08 - Searching and Sorting Arrays 8

INTRODUCTION TO SORTING ALGORITHMS A BUBBLE SORT FUNCTION FROM PROGRAM 17 INTRODUCTION TO SORTING ALGORITHMS BUBBLE SORT - TRADEOFFS Benefit: Easy to understand and implement Disadvantage: Inefficient: slow for large arrays 18 Lecture 08 - Searching and Sorting Arrays 9

INTRODUCTION TO SORTING ALGORITHMS SELECTION SORT Concept for sort in ascending order: Locate smallest element in array. Exchange it with element in position 0 Locate next smallest element in array. Exchange it with element in position 1. Continue until all elements are arranged in order 19 INTRODUCTION TO SORTING ALGORITHMS SELECTION SORT - EXAMPLE Array numlist contains: 1. Smallest element is 2. Exchange 2 with element in 1 st position in array: 2. Next smallest element is 3. Exchange 3 with element in 2 nd position in array: 2. Next smallest element is 11. Exchange 11 with element in 3 rd position in array: 20 Lecture 08 - Searching and Sorting Arrays 10

INTRODUCTION TO SORTING ALGORITHMS A SELECTION SORT FUNCTION FROM PROGRAM 35 void selectionsort(int array[], int size) 36 { 37 int startscan, minindex, minvalue; 38 39 for (startscan = 0; startscan < (size - 1); startscan++) 40 { 41 minindex = startscan; 42 minvalue = array[startscan]; 43 for(int index = startscan + 1; index < size; index++) 44 { 45 if (array[index] < minvalue) 46 { 47 minvalue = array[index]; 48 minindex = index; 49 } 50 } 51 array[minindex] = array[startscan]; 52 array[startscan] = minvalue; 53 } 54 } 21 INTRODUCTION TO SORTING ALGORITHMS SELECTION SORT - TRADEOFFS Benefit: More efficient than Bubble Sort, since fewer exchanges Disadvantage: May not be as easy as Bubble Sort to understand 22 Lecture 08 - Searching and Sorting Arrays 11

SORTING AND SEARCHING VECTORS Sorting and searching algorithms can be applied to vectors as well as arrays Need slight modifications to functions to use vector arguments: vector <type> & used in prototype No need to indicate vector size functions can use size member function to calculate 23 Lecture 08 - Searching and Sorting Arrays 12