Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

binarysearch

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binarysearch

pure js binary search for sorted javascript arrays||array like objects. returns any || last || first || closest matched key for value, or slice between 2 values where values need not exist.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45K
increased by2.23%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

node-binarysearch

pure js binary search for sorted javascript arrays||array like objects. returns any || last || first || closest matched key for value, or slice between 2 values where values need not exist.

returns the matched key or -1 if not found.

example


var bs = require('binarysearch');

bs([1,4,7,9,22,100,1000],7) === 2
//true

bs([1],5) === -1
// true

search with user defined comparitor function

bs([5,6,7,8,9],9,function(value,find){
  if(value > find) return 1;
  else if(value < find) return -1;
  return 0;
}) === 4
// true

find first key that matches

bs.first([1,2,3,3,3,4],3) === 2

find last key that matches

bs.last([1,2,3,3,3,4],3) === 4
 

find closest key to search value


bs.closest([1,2,4,5,6],3) === 1

query for range (inclusive)

bs.range([1,2,3,3,3,4,4,6],3,5) === [3,3,3,4,4]

search with object index


var index = bs.indexObject({a:2,b:1});
// [{k:'b',v:1},{k:a,v:2}];

var obj = {a:{id:22,name:'bob'},b:{id:11,name:'joe'}};
index = bs.indexObject(obj,function(o1,o2){
  if(o1.id > o2.id) return 1
  else if(o1.id < o2.id) return -1;
  return 0; 
});
// [{k:'b',v:11},{k:a,v:22}];


obj[bs(index,'bob').k] === {id:22,name:'bob'};

thanks

@rvagg https://github.com/rvagg for making leveldb bindings for node these search functions emulate leveldb query behavior.

FAQs

Package last updated on 26 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc