Skip to content

Commit 1a06e55

Browse files
committed
feat: add binary search
1 parent 4a21aaf commit 1a06e55

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

binary_search/binary_search.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
function binarySearch(array, element) {
2+
let first = 0;
3+
let last = array.length - 1;
4+
5+
while (first <= last) {
6+
let mid = Math.floor((first + last) / 2);
7+
if (array[mid] === element) return mid;
8+
if (array[mid] < element) first = mid + 1;
9+
else last = mid - 1;
10+
}
11+
12+
return null;
13+
}
14+
15+
const data = [1, 2, 5, 6, 8, 14, 16];
16+
const elements = [14, 32, 15, 2, 1];
17+
18+
elements.forEach(element => console.log(element, binarySearch(data, element)));
19+

0 commit comments

Comments
 (0)