Download presentation
Presentation is loading. Please wait.
Published byAnne Hill Modified over 9 years ago
1
1 Search Algorithms Sequential Search (Linear Search) Binary Search Rizwan Rehman Centre for Computer Studies Dibrugarh University
2
Searching Arrays Searching is the process of looking for a specific element in an array; for example, discovering whether a certain score is included in a list of scores. Searching, like sorting, is a common task in computer programming. There are many algorithms and data structures devoted to searching. In this section, two commonly used approaches are discussed, linear search and binary search. 2
3
Linear Search The linear search approach compares the key element, key, with each element in the array list[]. The method continues to do so until the key matches an element in the list or the list is exhausted without a match being found. If a match is made, the linear search returns the index of the element in the array that matches the key. If no match is found, the search returns -1. 3
4
4 Linear Search O (n) A Linear search of a list/array begins at the beginning of the list/array and continues until the item is found or the entire list/array has been searched
5
5 Linear Search bool LinSearch(double x[ ], int n, double item){ for(int i=0;i<n;i++){ if(x[i]==item) return true; else return false; } return false; }
6
6 Search Algorithms Suppose that there are n elements in the array. The following expression gives the average number of comparisons: It is known that Therefore, the following expression gives the average number of comparisons made by the Linear search in the successful case:
7
7 Search Algorithms
8
Linear Search Tradeoffs Linear Search is not very efficient. In the worst case, the target we are searching could be placed at the very end of the array, requiring that we search every single element in the array. On average, the target might be somewhere in the middle of the array, requiring that we search half of all the elements in the array. For example, if we had a 1000 element array: – worst case: we must search 1000 elements – on average: we search about 500 elements 8
9
Binary Search Binary Search is a more efficient option for searching arrays. There are two tricks to using Binary Search: – First, the array must be sorted. (Before you use Binary Search, you might first sort the array.) – Second, Binary Search works by dividing the search area in half after each comparison (more on this soon.) Binary Search is used very commonly in computer science, and there is a related concept called Binary Search Trees. – If you take an Algorithms course, you will definitely spend time researching Binary Search Trees. 9
10
10 Binary Search O(log2 n) A binary search looks for an item in a list using a divide-and- conquer strategy
11
11 Binary Search – Binary search algorithm assumes that the items in the array being searched are sorted – The algorithm begins at the middle of the array in a binary search – If the item for which we are searching is less than the item in the middle, we know that the item won’t be in the second half of the array – Once again we examine the “middle” element – The process continues with each comparison cutting in half the portion of the array where the item might be
12
12 Binary Search
13
13 Binary Search: middle element left + right 2 mid =
14
14 Binary Search bool BinSearch(double list[ ], int n, double item, int&index){ int left=0; int right=n-1; int mid; while(left<=right){ mid=(left+right)/2; if(item> list [mid]){ left=mid+1; } else if(item< list [mid]){right=mid-1;} else{ item= list [mid]; index=mid; return true; } }// while return false; }
15
15 Binary Search: Example
16
16 Binary Search
17
17 Binary Search
18
18 Binary Search Tree
19
19 Binary Search Tree O(log2 n) bool search(Node * root, int id) { bool found = false; if(root == NULL) return false; if(root->data == id) { cout<<" The node is found "<<endl; found = true; } if(!found) found = search(root->left, id); if(!found) found = search(root->right, id); return found; }
20
20 Binary Search Tree
21
21 Binary Search Tree
22
22 Binary Search Tree
23
Binary Search Efficiency Binary Search is very efficient. For example, if you have 1024 elements in you array, in the worst case, binary search only requires 10 comparisons. – Linear Search Worst Case: 1024 – Binary Search Worst Case: 10 If you have 1 billion elements, binary search only requires 30 comparisons! – Linear Search Worst Case: 1 billion – Binary Search Worst Case: 30! 23
24
Thank You 24
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.