SlideShare a Scribd company logo
SEARCHING & SORTINGSEARCHING & SORTING
ALGORITHMSALGORITHMS
GOKUL H
SEARCHING ALGORITHMS
BINARY INTERPOLATIONLINEAR
LINEAR SEARCH

Basic and simplest search algorithm

Searches an element or value from a list in a sequential order
till the desired element or value is found or the end of the list is
encountered

On successful search it returns the index of the value else it
returns -1

Search is applied on unsorted list when there are fewer
elements in the list

Time consuming and Inefficient for big lists
LINEAR SEARCH
Loop
start
Initialize array
and search KEY
If key==array[i]
stop
KEY found at i
yes
No
yes
No
8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9
8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9
8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9
8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9
8 7 15 12 4 9
0 1 2 3 4 5
Search KEY=12
KEY ‘12’ found @ 3
BINARY SEARCH

Improvement over the sequential search

Work only if the list is sorted

Approach employed is divide and conquer

Here, the approximate middle element of the array is located and its
value is examined

If its value is too high, then the value of the middle element of the first
half of the array is examined and the procedure is repeated until the
required item is found

If the value is too low, then the value of the middle element of the
second half of the array is checked and the procedure is repeated
SEARCHING AND SORTING ALGORITHMS
INTERPOLATION SEARCH
 In Binary search, mid = (high + low)/2
Why the middle element?
What if we had a better estimate of the location of the key?
Binary Search always checks the value at middle index. But Interpolation
search may check at different locations based on the value of element
being searched
Interpolation search uses the values of arr[low] and arr[high] to estimate
the position of the key, also known as probing
INTERPOLATION SEARCH
1 2 3 4 5 6 7 8 9 10
Assuming a linear distribution of keys in the array
mid = low + ((key - arr[low]) * (high - low)) / (arr[high] -
arr[low])
key
mid = 0+[(3-1)*(9-0)] / (10-1)=2
So arr[2]=3 which is the key value
Search is success:
1 2 3 4 5 6 7 8 9 10
SORTING
Insertion Quick Shell HeapBubble Selection Merge
BUBBLE SORT

Bubble sort works by comparing each item in the list with the
item next to it and swapping them if required

The algorithm repeats this process until it makes a pass all the
way through the list without swapping any items (in other words,
all items are in the correct order)

This causes larger values to ‘bubble’ to the end of the list while
smaller values ‘sink’ towards the beginning of the list

In brief, the bubble sort derives its name from the fact that the
smallest data item bubbles up to the top of the sorted array
BUBBLE SORT
First iteration
Second Iteration
Third Iteration
Sorted array
SELECTION SORT

Selection sort algorithm sorts an array by repeatedly finding the
minimum element (considering ascending order) from unsorted
part and putting it at the beginning

Algorithm maintains two subarrays in a given array
a.sorted array
b.unsorted array

In every iteration of selection sort, the minimum element
(considering ascending order)from the unsorted subarray is
picked and moved to the sorted subarray
SELECTION SORT
ALGORITHM
Step 1 − Set MIN to location 0
Step 2 − Search the minimum element
in the list
Step 3 − Swap with value at location
MIN
Step 4 − Increment MIN to point to next
element
Step 5 − Repeat until list is sorted
SELECTION SORT
Index<length-1
Find smallest element
In array between Index
and length-1
Swap smallest element
found above with
element at Index
Index++
start
end
Index=0
TRUE
FALSE
INSERTION SORT

In-place comparison-based sorting algorithm

Here, a sub-list is maintained which is always sorted

For example, the lower part of an array is maintained to be
sorted

An element which is to be 'insert'ed in this sorted sub-list, has to
find its appropriate place and then it has to be inserted there.
Hence the name, insertion sort.

The array is searched sequentially and unsorted items are
moved and inserted into the sorted sub-list (in the same array)
ALGORITHM
Step 1 − If it is the first element, it is already sorted. return 1;
Step 2 − Pick next element
Step 3 − Compare with all elements in the sorted sub-list
Step 4 − Shift all the elements in the sorted sub-list that is greater than the value to be sorted
Step 5 − Insert the value
Step 6 − Repeat until list is sorted
This process goes on…….
QUICK SORT

Based on partitioning of array of data into smaller arrays

A large array is partitioned into two arrays

One of which holds values smaller than the specified value, say
pivot, based on which the partition is made

Another array holds values greater than the pivot value
ALGORITHM
Step 1 − Choose the highest index value has pivot
Step 2 − Take two variables to point left and right of the list excluding pivot
Step 3 − left points to the low index
Step 4 − right points to the high
Step 5 − while value at left is less than pivot move right
Step 6 − while value at right is greater than pivot move left
Step 7 − if both step 5 and step 6 does not match swap left and right
Step 8 − if left right, the point where they met is new pivot≥
SEARCHING AND SORTING ALGORITHMS
SHELL SORT

Highly efficient sorting algorithm and is based on insertion sort
algorithm

Avoids large shifts as in case of insertion sort, if the smaller
value is to the far right and has to be moved to the far left

Uses insertion sort on a widely spread elements, first to sort
them and then sorts the less widely spaced elements
ALGORITHM
Step 1 − Initialize the value of h
Step 2 − Divide the list into smaller sub-list of
equal Interval h
Step 3 − Sort these sub-lists using insertion sort
Step 3 − Repeat until complete list is sorted
HEAP SORT

Heap Sort is one of the best sorting methods being in-place and
with no quadratic worst-case scenarios. Heap sort algorithm is
divided into two basic parts

Creating a Heap of the unsorted list

Then a sorted array is created by repeatedly removing the
largest/smallest element from the heap, and inserting it into the
array

The heap is reconstructed after each removal
Max Heap Construction Algorithm
Step 1 Create a new node at the end of heap.
Step 2 Assign new value to the node.
Step 3 Compare the value of this child node with its
parent.
Step 4 If value of parent is less than child,then
swap them.
Step 5 Repeat step 3 & 4 until Heap property
holds.
Max Heap Deletion Algorithm
Step 1 − Remove root node.
Step 2 − Move the last element of last level to root.
Step 3 − Compare the value of this child node with
its parent.
Step 4 − If value of parent is less than child, then
swap them.
Step 5 − Re peat step 3 & 4 until Heap property
holds.
SEARCHING AND SORTING ALGORITHMS
MERGE SORT

Sorting technique based on divide and conquer technique.

Merge sort first divides the array into equal halves and then combines
them in a sorted manner.
ALGORITHM
Step 1 − if it is only one element in the list it is already sorted, return.
Step 2 − divide the list recursively into two halves until it can no more
be divided.
Step 3 − merge the smaller lists into new list in sorted order.
ALGORITHM
Step 1 − if it is only one element in the list it is already sorted, return.
Step 2 − divide the list recursively into two halves until it can no more be divided.
Step 3 − merge the smaller lists into new list in sorted order.
THANKK YOUUU!!!!!!

More Related Content

PPTX
Searching and sorting
PPT
Searching in c language
PDF
Data structure ppt
PPTX
Sorting Algorithms
PDF
Algorithms Lecture 6: Searching Algorithms
PPTX
Linear search-and-binary-search
PDF
Sorting Algorithms
Searching and sorting
Searching in c language
Data structure ppt
Sorting Algorithms
Algorithms Lecture 6: Searching Algorithms
Linear search-and-binary-search
Sorting Algorithms

What's hot (20)

PPTX
PPT On Sorting And Searching Concepts In Data Structure | In Programming Lang...
PPTX
heap Sort Algorithm
PPTX
Doubly Linked List
PPT
Binary Search
PPTX
Linked List
PDF
Binary Search - Design & Analysis of Algorithms
PPTX
Binary Search Tree in Data Structure
PPTX
Binary search
PDF
linear search and binary search
PPTX
PPT
Searching algorithms
PDF
Array data structure
PPTX
Insertion sort
PPTX
Searching & Sorting Algorithms
PDF
PPT
Heap sort
PPTX
Searching
PPT
Bubble sort
PPT
Data Structure and Algorithms Binary Search Tree
PPTX
Data Structures : hashing (1)
PPT On Sorting And Searching Concepts In Data Structure | In Programming Lang...
heap Sort Algorithm
Doubly Linked List
Binary Search
Linked List
Binary Search - Design & Analysis of Algorithms
Binary Search Tree in Data Structure
Binary search
linear search and binary search
Searching algorithms
Array data structure
Insertion sort
Searching & Sorting Algorithms
Heap sort
Searching
Bubble sort
Data Structure and Algorithms Binary Search Tree
Data Structures : hashing (1)
Ad

Similar to SEARCHING AND SORTING ALGORITHMS (20)

PPTX
data structures and algorithms Unit 3
PPTX
AJisthewewrtyuiojhghfdfsgvhjhklopi87ytrytfghjk
PPTX
sorting and searching.pptx
PPTX
DS - Unit 2 FINAL (2).pptx
PPTX
Data Structures_ Sorting & Searching
PPTX
Searching and Sorting algorithms and working
PDF
Heap, quick and merge sort
PDF
advanced searching and sorting.pdf
DOCX
MODULE 5-Searching and-sorting
PDF
Unit v data structure-converted
PPT
Searching Sorting
PPTX
All Searching and Sorting Techniques in Data Structures
PPTX
Sorting Algorithms to arrange data in particular format
PPTX
Searching,sorting
PDF
Data structures arrays
PDF
PDF
BCA DATA STRUCTURES SEARCHING AND SORTING MRS.SOWMYA JYOTHI
PDF
PPTX
Sorting types and Algorithms
PPTX
Data structure using c module 3
data structures and algorithms Unit 3
AJisthewewrtyuiojhghfdfsgvhjhklopi87ytrytfghjk
sorting and searching.pptx
DS - Unit 2 FINAL (2).pptx
Data Structures_ Sorting & Searching
Searching and Sorting algorithms and working
Heap, quick and merge sort
advanced searching and sorting.pdf
MODULE 5-Searching and-sorting
Unit v data structure-converted
Searching Sorting
All Searching and Sorting Techniques in Data Structures
Sorting Algorithms to arrange data in particular format
Searching,sorting
Data structures arrays
BCA DATA STRUCTURES SEARCHING AND SORTING MRS.SOWMYA JYOTHI
Sorting types and Algorithms
Data structure using c module 3
Ad

Recently uploaded (20)

PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Approach and Philosophy of On baking technology
PPTX
Big Data Technologies - Introduction.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Machine learning based COVID-19 study performance prediction
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPT
Teaching material agriculture food technology
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Approach and Philosophy of On baking technology
Big Data Technologies - Introduction.pptx
cuic standard and advanced reporting.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Per capita expenditure prediction using model stacking based on satellite ima...
Review of recent advances in non-invasive hemoglobin estimation
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Machine learning based COVID-19 study performance prediction
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Chapter 3 Spatial Domain Image Processing.pdf
Spectral efficient network and resource selection model in 5G networks
Understanding_Digital_Forensics_Presentation.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Teaching material agriculture food technology

SEARCHING AND SORTING ALGORITHMS

  • 1. SEARCHING & SORTINGSEARCHING & SORTING ALGORITHMSALGORITHMS GOKUL H
  • 3. LINEAR SEARCH  Basic and simplest search algorithm  Searches an element or value from a list in a sequential order till the desired element or value is found or the end of the list is encountered  On successful search it returns the index of the value else it returns -1  Search is applied on unsorted list when there are fewer elements in the list  Time consuming and Inefficient for big lists
  • 4. LINEAR SEARCH Loop start Initialize array and search KEY If key==array[i] stop KEY found at i yes No yes No 8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9 8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9 8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9 8 7 15 12 4 98 7 15 12 4 98 7 15 12 4 98 7 15 12 4 9 8 7 15 12 4 9 0 1 2 3 4 5 Search KEY=12 KEY ‘12’ found @ 3
  • 5. BINARY SEARCH  Improvement over the sequential search  Work only if the list is sorted  Approach employed is divide and conquer  Here, the approximate middle element of the array is located and its value is examined  If its value is too high, then the value of the middle element of the first half of the array is examined and the procedure is repeated until the required item is found  If the value is too low, then the value of the middle element of the second half of the array is checked and the procedure is repeated
  • 7. INTERPOLATION SEARCH  In Binary search, mid = (high + low)/2 Why the middle element? What if we had a better estimate of the location of the key? Binary Search always checks the value at middle index. But Interpolation search may check at different locations based on the value of element being searched Interpolation search uses the values of arr[low] and arr[high] to estimate the position of the key, also known as probing
  • 8. INTERPOLATION SEARCH 1 2 3 4 5 6 7 8 9 10 Assuming a linear distribution of keys in the array mid = low + ((key - arr[low]) * (high - low)) / (arr[high] - arr[low]) key mid = 0+[(3-1)*(9-0)] / (10-1)=2 So arr[2]=3 which is the key value Search is success: 1 2 3 4 5 6 7 8 9 10
  • 9. SORTING Insertion Quick Shell HeapBubble Selection Merge
  • 10. BUBBLE SORT  Bubble sort works by comparing each item in the list with the item next to it and swapping them if required  The algorithm repeats this process until it makes a pass all the way through the list without swapping any items (in other words, all items are in the correct order)  This causes larger values to ‘bubble’ to the end of the list while smaller values ‘sink’ towards the beginning of the list  In brief, the bubble sort derives its name from the fact that the smallest data item bubbles up to the top of the sorted array
  • 11. BUBBLE SORT First iteration Second Iteration Third Iteration Sorted array
  • 12. SELECTION SORT  Selection sort algorithm sorts an array by repeatedly finding the minimum element (considering ascending order) from unsorted part and putting it at the beginning  Algorithm maintains two subarrays in a given array a.sorted array b.unsorted array  In every iteration of selection sort, the minimum element (considering ascending order)from the unsorted subarray is picked and moved to the sorted subarray
  • 13. SELECTION SORT ALGORITHM Step 1 − Set MIN to location 0 Step 2 − Search the minimum element in the list Step 3 − Swap with value at location MIN Step 4 − Increment MIN to point to next element Step 5 − Repeat until list is sorted
  • 14. SELECTION SORT Index<length-1 Find smallest element In array between Index and length-1 Swap smallest element found above with element at Index Index++ start end Index=0 TRUE FALSE
  • 15. INSERTION SORT  In-place comparison-based sorting algorithm  Here, a sub-list is maintained which is always sorted  For example, the lower part of an array is maintained to be sorted  An element which is to be 'insert'ed in this sorted sub-list, has to find its appropriate place and then it has to be inserted there. Hence the name, insertion sort.  The array is searched sequentially and unsorted items are moved and inserted into the sorted sub-list (in the same array)
  • 16. ALGORITHM Step 1 − If it is the first element, it is already sorted. return 1; Step 2 − Pick next element Step 3 − Compare with all elements in the sorted sub-list Step 4 − Shift all the elements in the sorted sub-list that is greater than the value to be sorted Step 5 − Insert the value Step 6 − Repeat until list is sorted This process goes on…….
  • 17. QUICK SORT  Based on partitioning of array of data into smaller arrays  A large array is partitioned into two arrays  One of which holds values smaller than the specified value, say pivot, based on which the partition is made  Another array holds values greater than the pivot value
  • 18. ALGORITHM Step 1 − Choose the highest index value has pivot Step 2 − Take two variables to point left and right of the list excluding pivot Step 3 − left points to the low index Step 4 − right points to the high Step 5 − while value at left is less than pivot move right Step 6 − while value at right is greater than pivot move left Step 7 − if both step 5 and step 6 does not match swap left and right Step 8 − if left right, the point where they met is new pivot≥
  • 20. SHELL SORT  Highly efficient sorting algorithm and is based on insertion sort algorithm  Avoids large shifts as in case of insertion sort, if the smaller value is to the far right and has to be moved to the far left  Uses insertion sort on a widely spread elements, first to sort them and then sorts the less widely spaced elements
  • 21. ALGORITHM Step 1 − Initialize the value of h Step 2 − Divide the list into smaller sub-list of equal Interval h Step 3 − Sort these sub-lists using insertion sort Step 3 − Repeat until complete list is sorted
  • 22. HEAP SORT  Heap Sort is one of the best sorting methods being in-place and with no quadratic worst-case scenarios. Heap sort algorithm is divided into two basic parts  Creating a Heap of the unsorted list  Then a sorted array is created by repeatedly removing the largest/smallest element from the heap, and inserting it into the array  The heap is reconstructed after each removal
  • 23. Max Heap Construction Algorithm Step 1 Create a new node at the end of heap. Step 2 Assign new value to the node. Step 3 Compare the value of this child node with its parent. Step 4 If value of parent is less than child,then swap them. Step 5 Repeat step 3 & 4 until Heap property holds. Max Heap Deletion Algorithm Step 1 − Remove root node. Step 2 − Move the last element of last level to root. Step 3 − Compare the value of this child node with its parent. Step 4 − If value of parent is less than child, then swap them. Step 5 − Re peat step 3 & 4 until Heap property holds.
  • 25. MERGE SORT  Sorting technique based on divide and conquer technique.  Merge sort first divides the array into equal halves and then combines them in a sorted manner. ALGORITHM Step 1 − if it is only one element in the list it is already sorted, return. Step 2 − divide the list recursively into two halves until it can no more be divided. Step 3 − merge the smaller lists into new list in sorted order.
  • 26. ALGORITHM Step 1 − if it is only one element in the list it is already sorted, return. Step 2 − divide the list recursively into two halves until it can no more be divided. Step 3 − merge the smaller lists into new list in sorted order.