binary-search-jsv2

1.0.5 • Public • Published

Binary Search

Binary Search in JavaScript

npm i binary-search-jsv2

npm link

for example :

import binarySearch from 'binary-search-jsv2';

const list = [4, 5, 15, 7, 9, 10, 12];
const sortList = list.sort(function (a, b) {
  return a - b;
});
const value = 15;

binarySearch(value, sortList); // 6

Package Sidebar

Install

npm i binary-search-jsv2

Weekly Downloads

0

Version

1.0.5

License

ISC

Unpacked Size

1.35 kB

Total Files

3

Last publish

Collaborators

  • alizare