0% found this document useful (0 votes)
130 views9 pages

DSU Micro Project

The document describes a study on the binary searching algorithm conducted by 4 students. It provides an abstract that explains binary search is more efficient than linear search as it divides sorted data into halves and ignores portions that cannot contain the search value. It also introduces the topic, explaining binary search uses a divide and conquer approach to search sorted data by comparing the middle element and ignoring half the data based on the comparison. It further details the implementation of binary search to find a value in a sorted array by recursively dividing the search space in half.

Uploaded by

nilwarna dhande
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
130 views9 pages

DSU Micro Project

The document describes a study on the binary searching algorithm conducted by 4 students. It provides an abstract that explains binary search is more efficient than linear search as it divides sorted data into halves and ignores portions that cannot contain the search value. It also introduces the topic, explaining binary search uses a divide and conquer approach to search sorted data by comparing the middle element and ignoring half the data based on the comparison. It further details the implementation of binary search to find a value in a sorted array by recursively dividing the search space in half.

Uploaded by

nilwarna dhande
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Trimurti Institute of Polytechnic, Paldhi

Project Name:- Binary Searching Algorithm Academic Year: 2022-2023


Subject Name: - Data Structure Semester: - Third

A STUDY ON

Binary Searching Algorithm


Submitted in 2021 by the group of 4 Students

Sr. No Roll No Full Name of Student Enrolment No


(Sem 3)
1 2107 Jayesh Patil 2014320072

Under the Guidance of


Mr. Sanjay Thakre
In

Three Year Diploma in Engineering & Technology of Maharashtra State Bord of


Technical Education, Mumbai (Autonomous)
ISO 9001:2008 (ISO/IEC-27001-2013)
At

1432 GOVERMENT POLYTECHNIC, NANDURBAR.

Page | 1
Trimurti Institute of Polytechnic, Paldhi

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION, MUMBAI

Certificate
This is to certify that Mr./Mts. 1) Jayesh Patil (Roll NO: 2107)
2) Vedant Bachhav (Roll NO: 2125)
3) Harshal Patil (Roll NO: 2158)
4) Rutvik Patil (Roll NO: 2121)

Roll No: ……. Of Third Semester of Computer Engineering Diploma in Engineering &
Technology at 1432 GOVERNMENT POLYTECHNIC, NANDURBAR, has completed the
Micro Project satisfactorily in Subject DSU in the academic year 2021-2022 as per the
MSBTE prescribed curriculum of I Scheme.

Place : Nandurbar Enrolment No: 1) 2014320072


2) 2014320091
3) 2014320200
4) 2014320086

Date :

Project Guide Head of the Department Principal

Page | 2
Trimurti Institute of Polytechnic, Paldhi

INDEX

Sr. Title Page


No No.
1 4
Abstract
2 4
Introduction
3 5
What is the binary search
algorithm?
4 5
Time Complexity
5 6
Implementation of Binary
Search Algorithm

 Outputs of the Micro-Project


 Skill Developed/Learning outcome of this Micro
6 7
Project
 Applications of this Micro-Project
 Conclusion
 reference
8
7 Weekly work progress report

9
8 Annexure

Page | 3
Trimurti Institute of Polytechnic, Paldhi

Abstract

Binary search is a more specialized algorithm than sequential search as it takes advantage of data that
has been sorted. The underlying idea of binary search is to divide the sorted data into two halves and
to examine the data at the point of the split. Since the data is sorted, we can easily ignore one half or
the other depending on where the data we're looking for lies in comparison to the data at the split.
This makes for a much more efficient search than linear search.
Binary search is used on sorted arrays, but we see it more often when used with binary search trees
(see the trees SparkNote for more information). Whereas linear search allows us to look for data
in O(n) time, where n is the number of elements being searched, binary search allows us to do the
same search in O(logn) time, a dramatic speed enhancement.

Introduction

In this article, we will discuss the Binary Search Algorithm. Searching is the process of finding some
particular element in the list. If the element is present in the list, then the process is called successful,
and the process returns the location of that element. Otherwise, the search is called unsuccessful.
Linear Search and Binary Search are the two popular searching techniques. Here we will discuss the
Binary Search Algorithm.
Binary search is the search technique that works efficiently on sorted lists. Hence, to search an
element into some list using the binary search technique, we must ensure that the list is sorted.
Binary search follows the divide and conquer approach in which the list is divided into two halves, and
the item is compared with the middle element of the list. If the match is found then, the location of
the middle element is returned. Otherwise, we search into either of the halves depending upon the
result produced through the match.

Page | 4
Trimurti Institute of Polytechnic, Paldhi

What is the binary search algorithm?

Binary Search Algorithm is used to find a certain value of x for which a certain defined function f(x) needs to be
maximized or minimized. It is frequently used to search an element in a sorted sequence by repeatedly dividing
the search interval into halves. Begin with an interval covering the whole sequence, if the value of the search
key is less than the item in the middle of the interval, then search in the left half of the interval otherwise search
in the right half. Repeatedly check until the value is found or the interval is empty. 
The main condition to perform a Binary Search is that the sequence must be monotonous i.e., it must be either
increasing or decreasing.  

Time Complexity

Case Time Complexity


Best Case O (1)
Average Case O(logn)
Worst Case O(logn)

 Best Case Complexity - In Binary search, best case occurs when the element to search is found in first
comparison, i.e., when the first middle element itself is the element to be searched. The best-case time
complexity of Binary search is O (1).
 Average Case Complexity - The average case time complexity of Binary search is O(logn).
 Worst Case Complexity - In Binary search, the worst case occurs, when we have to keep reducing the
search space till it has only one element. The worst-case time complexity of Binary search is O(logn).

Space Complexity
 The space complexity of binary search is O (1).

Page | 5
Trimurti Institute of Polytechnic, Paldhi

Implementation of Binary Search Algorithm

By using linear search, the position of element 8 will be determined in the 9th iteration.


Let's see how the number of iterations can be reduced by using binary search. Before we start the search, we
need to know the start and end of the range. Let’s call them Low and High.
Low = 0
High = n-1

Now, compare the search value K with the element located at the median of the lower and upper bounds. If the
value K is greater, increase the lower bound, else decrease the upper bound.

Referring to the image above, the lower bound is 0 and the upper bound is 9. The median of the lower and
upper bounds is (lower_bound + upper_bound) / 2 = 4. Here a [4] = 4. The value 4>2, which is the value that you
are searching for. Therefore, we do not need to conduct a search on any element beyond 4 as the elements
beyond it will obviously be greater than 2.
Therefore, we can always drop the upper bound of the array to the position of element 4. Now, we follow the
same procedure on the same array with the following values.
Low: 0
High: 3

Repeat this procedure recursively until Low > High. If at any iteration, we get a[mid]=key, we return value
of mid. This is the position of key in the array. If key is not present in the array, we return −1.

Page | 6
Trimurti Institute of Polytechnic, Paldhi

Outputs of the Micro-Project: -


 We created Binary Searching in C for Searching of element in Integer Sorted Array.

Skill Developed/Learning outcome of this Micro Project :-

• We learn how to manage projects and assignments more efficiently.


• We get helps to develop additional skills integral to their future
• When working on a project, students learn to manage obstacles more effectively
• We Learned Team Work.

Applications of this Micro-Project :-

 This algorithm is used to search element in a given sorted array with more efficiency.
 It could also be used for few other additional operations like- to find the smallest element in the array
or to find the largest element in the array.

Conclusion: -

Search algorithms are all over in any engineer’s code. From authorization and authentication to a simple filter
on your page it is important to understand what is going on behind any abstractions. Deeper knowledge into
algorithms like binary search will help you write good, clean code and lend its hand in any optimizations that
need to be made.

Reference :-

 https://www.geeksforgeeks.org

 https://en.wikipedia.org/

 https://www.javatpoint.com/

 https://www.programiz.com/dsa

Page | 7
Trimurti Institute of Polytechnic, Paldhi

Weekly Work / Progress Report

Details of 16 Engagement Hours of the Student


Regarding Completion of the Project

Timing
Week Work or activity Performed Sign of the
No. Date From To Duration Guide
in hours
Discussion and Finalization of the Project
1 16/10/21 2:00 3:00 1 Title

2 17/10/21 2:00 3:00 1 Preparation and Submission of Abstracts

3 23/10/21 3:00 4:00 1 Literature Review

4 24/10/21 2:00 3:00 1 Collection of Data

5 30/10/21 3:00 4:00 1 Sorting of Data

6 31/10/21 4:00 5:00 1 Discussion and Outline of Content

7 6/11/21 4:00 5:00 1 Rough Writing of the Projects Contents

Editing and Proof Reading of the Contents


8 7/11/21 2:00 3:00 1

9 13/11/21 2:00 3:00 1 Final Completion of the Project

Seminar Presentation, viva-vice,


10 3:00 4:00 1 Assessment and Submission of Report

Page | 8
Trimurti Institute of Polytechnic, Paldhi

ANNEXURE – II
Evaluation Sheet for the micro project(Teachers copy)
Academic Year:- 2021-2022 Name of Faculty :- Mr. Sanjay Thakre
Sem :- Third Program Name and Code :- Computer Engineering.
Course :- DSU Course Code :- 22317
1) Jayesh Patil
Name of Students:- 2) Vedant Bachhav
3) Harshal Patil
4) Rutvik Patil
Title of the Project :- Binary Searching Algorithm

• COs addressed by the Micro Project:


(A) Major Learning Outcomes achieved by students by doing the
Project: (a)Practical Outcomes:
1. Basic knowledge
2. Discipline knowledge
3. Experiments and Practice
(b) Outcomes (in Cognitive domain)
1. Processing information
2. Constructing
3. Understanding
4. Applying knowledge

 Comment/Suggestions about team work/leadership/inter-personal


Communication (If Any):
Marks out of 6 Marks out of 4 for Total
Roll No Student Name for Performance performance in out of
in group activity oral / presentation
10
2107 Jayesh Patil
2125 Vedant Bachhav
2158 Harshal Patil
2121 Rutvik Patil

( )
Signature With Name and Designation of the Faculty Member

Page | 9

You might also like