Starting Out with C++
Starting Out with C++
8th Edition
ISBN: 9780133888201
Author: GADDIS
Publisher: PEARSON CUSTOM PUB.(CONSIGNMENT)
Expert Solution & Answer
Book Icon
Chapter 8, Problem 18RQE

Explanation of Solution

Linear search:

  • Linear search or sequential search is the process of searching for a particular element that is present in the array one by one till the last element in the search element is found.
  • The search uses a loop that iterates from the beginning till the last element to find the search element.
  • The search continues for all the elements present in the array until the last element.
  • The search of the target element is made after comparing it with each and every element that is present in the array.
  • The search process continues until the target value or search value is found.
  • If the search element is not found, the search gets returned unsuccessfully.

Number of comparison in linear search:

To search the target element that is present in the array, the search element is compared with the number of elements present in the array. Even if the array contains 500 elements, the search process continues 500 times if the search element is present at the end of the array.

Maximum number of comparison = N

Average number of the comparison = N / 2

Binary search:

  • Binary search is a smart search process that searches for the particular element that is present in the array from the middle towards the left or right until the search element is found.
  • The search element is searched from the middle as the elements present in the array need to be present in the sorted order.
    • If the search element is larger, it will search towards the right of the array.
    • If the search element is smaller, it will search towards the left of the array.
  • The search continues in a narrow way such that it searches for a quarter of the array until there are no values left in the array to search or compare.
  • The search of the target element is made in a smart way it eliminates a portion of an array based on the given element, as the array is sorted...

Blurred answer
Students have asked these similar questions
Binary search has several benefits over sequential search, but how do you choose which algorithm to use?
How is the binary search more efficient that the sequential search algorithm?
Create a sort algorithm that counts the variety of key values before sorting the array using key-indexed counting using a symbol table. (This technique should not be used if there are many different key values.)
Knowledge Booster
Background pattern image
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education