HarshCasper / NeoAlgo

Bringing all Data Structures and Algorithms under one Roof âš¡
MIT License
875 stars 1.05k forks source link

binary search without using built-in length function #7584

Closed Akshitajain1906 closed 2 years ago

Akshitajain1906 commented 2 years ago

🚀 Feature

binary search without using arr.length using java under GSSOC'22

Have you read the Contributing Guidelines on Pull Requests?

YES

Motivation

(Please outline the motivation for the proposal.)

Pitch

This code is to find a particular element in an sorted array when we do not know the length of the array and are not allowed to use length function. This can be treated as a base code for binary search in an infinite array where we are unaware of the length.

Akshitajain1906 commented 2 years ago

please assign me this issue