
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
@algorithm.ts/binary-search
Advanced tools
Find the index of first elements which greater or equals than the target element.
Typescript implementations of the binary search related algorithm. Different from the traditional implementation which find the element in an array with the given condition, this implementation aims to find a number that satisfied the target condition in the given interval. The condition checker receive the number currently found as parameter and returns a number indicating the difference between the currently checking number and the target number. When the returned value is
< 0
: It means that the target number is on the right side of the currently checking number.= 0
: It means that this currently checking number is a target number but it does not guarantee
that there are no other numbers that meet the conditions.> 0
: It means that the target number is on the left side of the currently checking number.This package contains three binary search related algorithm implemented in Typescript:
binary-search (integer / bigint): Find a number in the given interval such that it satisfies the given condition.
null
.lower-bound (integer / bigint): Find the smallest number in the given interval such that it satisfies the given condition.
upper-bound (integer / bigint): Find the smallest number in the given interval such that it is greater than the target number.
npm
npm install --save @algorithm.ts/binary-search
yarn
yarn add @algorithm.ts/binary-search
Basic
import { binarySearch, lowerBound, upperBound } from '@algorithm.ts/binary-search'
// elements should be ordered.
const elements: number[] = [2, 3, 7, 11, 19]
// Find the first index of elements which are greater or equal than 8
// elements[3] = 11 >= 8
lowerBound(0, elements.length, x => elements[x] - 8) // => 3
// Find the first index of elements which are greater than 8
// elements[3] = 11 > 8
upperBound(0, elements.length, x => elements[x] - 8) // => 3
// Find the first index of elements which are equal than 8
// No such an element equals with 8.
binarySearch(0, elements.length, x => elements[x] - 8) // => null
// Find the first index of elements which are greater or equal than 3
// elements[1] = 3 >= 3
lowerBound(0, elements.length, x => elements[x] - 3) // => 1
// Find the first index of elements which are greater than 3
// elements[2] = 7 > 3
upperBound(0, elements.length, x => elements[x] - 3) // => 7
// Find the first index of elements which are equal than 3
// No such an element equals with 8.
binarySearch(0, elements.length, x => elements[x] - 3) // => 1
Advance
import { lowerBound ] from '@algorithm.ts/binary-search'
const fruits = [
{ type: 'orange', price: 3 },
{ type: 'apple', price: 10 },
{ type: 'banana', price: 10 },
{ type: 'watermelon', price: 12 },
{ type: 'lemon', price: 15 },
]
// Find the index of fruits which price is greater or equal than 10
lowerBound(0, fruits.length, x => fruits[x].price - 10) // => 1
// Find the index of fruits which price is greater or equal than 11
lowerBound(0, fruits.length, x => fruits[x].price - 11) // => 3
Bigint
import { lowerBoundBigint } from '@algorithm.ts/binary-search'
lowerBoundBigint(-500000000000n, 5000000000n, x => x - 1n) // => 1n
FAQs
Find the index of first elements which greater or equals than the target element.
The npm package @algorithm.ts/binary-search receives a total of 1 weekly downloads. As such, @algorithm.ts/binary-search popularity was classified as not popular.
We found that @algorithm.ts/binary-search demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.