![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@masx200/binary-search-bounds
Advanced tools
Binary search on arrays for predecessor, successor and range queries.
The main reason for using a
binary search or
ordered set data structure instead of a hash map is to support fast
predecessor/successor queries. Besides this library, I am aware of no other
modules on npm which implement these semantics (making them effectively
useless)!!! binary-search-bounds
corrects this sad state of affairs.
//Import module
var bounds = require("@masx200/binary-search-bounds");
//Create an array
var array = [1, 2, 3, 3, 3, 5, 6, 10, 11, 13, 50, 1000, 2200];
//Print all elements in array contained in the interval [3, 50)
console.log(
array.slice(
bounds.ge(array, 3),
bounds.lt(array, 50),
),
);
//Test if array contains the element 4
console.log("indexOf(6)=", bounds.eq(array, 6));
console.log("indexOf(4)=", bounds.eq(array, 4));
//Find the element immediately after 13
console.log("successor of 13 = ", array[bounds.gt(array, 13)]);
//Find the element in the array before 4
console.log("predecessor of 4 = ", array[bounds.lt(array, 4)]);
//Create an array of objects
var creatures = [
{ legs: 8, name: "spider" },
{ legs: 4, name: "mouse" },
{ legs: 4, name: "cat" },
{ legs: 2, name: "Ben Franklin" },
{ legs: 4, name: "table", isCreature: false },
{ legs: 100, name: "centipede" },
{ legs: 4, name: "dog" },
{ legs: 6, name: "ant" },
];
//Sort the array by number of legs
function byLegs(a, b) {
return a.legs - b.legs;
}
creatures.sort(byLegs);
//Find the next creature with more than 4 legs
console.log(
"What has more than 4 legs? Answer: ",
creatures[bounds.gt(creatures, { legs: 4 }, byLegs)],
);
[ 3, 3, 3, 5, 6, 10, 11 ]
indexOf(6)= 6
indexOf(4)= -1
successor of 13 = 50
predecessor of 4 = 3
What has more than 4 legs? Answer: { legs: 6, name: 'ant' }
Using npm, you can install the library as follows:
npm install @masx200/binary-search-bounds
This module works great with browserify if you want to use it in front end projects.
var bounds = require("@masx200/binary-search-bounds");
bounds.lt(array, y[, cmp, lo, hi])
Returns the index of the last item in the array <
y. This is the same as a
predecessor query.
bounds.le(array, y[, cmp, lo, hi])
Returns the index of the last item in the array <=
y. This is a predecessor
query which also returns the item if present.
bounds.gt(array, y[, cmp, lo, hi])
Returns the index of the first item in the array >
y. This is the same as a
successor query.
bounds.ge(array, y[, cmp, lo, hi])
Returns the index of the first item in the array >=
y. This is a successor
query which also returns the item if present.
bounds.eq(array, y[, cmp, lo, hi])
Returns an index of some item in the array == y
or -1
if the item is not
present.
The following comments apply to the above methods:
cmp
is a comparison function, just like what you would pass to
Array.sort()
y
will always be the second argument passed to cmp
, so you can ignore it
if you are just binary searching on a predicate.Array.sort(cmp)
on itlo
gives a lower bound on the array index to search. If not specified
defaults to 0.hi
gives an upper bound on the array index to search. If not specified
defaults to array.length-1
[lo,hi]
is inclusive (closed)bounds.le
and bounds.lt
will return lo - 1
if no element is found that
==y
bounds.ge
and bounds.gt
will return hi + 1
if no element is found that
==y
bounds.eq
will return -1
if no element matching y
is found.bounds.eq
will return the first found item with the given index. It can be a
little faster than the other methods if you just want to find some random
match and do not care where it is.(c) 2013-2015 Mikola Lysenko. MIT License
FAQs
Better binary searching
The npm package @masx200/binary-search-bounds receives a total of 2 weekly downloads. As such, @masx200/binary-search-bounds popularity was classified as not popular.
We found that @masx200/binary-search-bounds demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.