Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/komayuki/js-binary-search

binary search
https://github.com/komayuki/js-binary-search

algorithm binary-search javascript nodejs

Last synced: about 1 month ago
JSON representation

binary search

Awesome Lists containing this project

README

        

# js-binary-search

## array
```
const bSearch = require('js-binary-search');
const array = [3, 5, 12, 56, 100];
bSeach.search(array, 12);
// return { index: 2, item: 12 }
```

## associative_array
```
const bSearch = require('js-binary-search')
const array = [
{id: 2},
{id: 5},
{id: 13},
{id: 26}
]
bSeach.search_in_associative(array, 'id', 26)
// return {index: 3, item: {id: 26}}
```