sorted-array-type
v1.3.0
Published
Array with sorted insertion and optimized search methods.
Downloads
371
Maintainers
Readme
SortedArray
This package implements a SortedArray type, which is an array whose contents are always sorted. It supports all standard ES6 Array methods and it provides additional methods relating to keeping elements in a sorted order. It fully supports indexing, enumeration, and a length property.
The package is licensed according to the permissive open source zlib/libpng license.
View the generated documentation here.
Note that the SortedArray type uses the native Array.sort
method for some functionality, meaning that sort stability will
depend on the platform.
If Array.sort
is stable, however, then all SortedArray sort
and insertion operations will also be stable.
const sortedArray = new SortedArray(["alice", "carl", "bob"]);
sortedArray[1]; // "bob"
sortedArray.length; // 3
sortedArray.insert("beatrice"); // ["alice", "beatrice", "bob", "carl"]
sortedArray.indexOf("bob"); // 2 (uses optimized search)
sortedArray.pop(); // "carl"
sortedArray.slice(0, 2); // SortedArray(["alice", "beatrice"])
Installation
You can add SortedArray to your JavaScript project by using a
package manager to install the sorted-array-type
package. For example:
npm install --save sorted-array-type
Import the SortedArray type into your project with require
or an ES6 import.
const {SortedArray} = require("sorted-array-type");
import SortedArray from "sorted-array-type";
Documentation
View the generated documentation here.
Abusing a SortedArray
Warning: The SortedArray type exposes the full interface of its base Array type, including functions that can cause it to become invalid if used without care.
These operations, if used carelessly, can cause the SortedArray's contents to no longer be in sorted order. You very probably do not have a good reason to do this!
Invalidating the SortedArray's assumption that its contents are always in a sorted order will cause some functions to have unexpected behavior. Use these tools with care!
// USE WITH CAUTION!
sortedArray[0] = x;
sortedArray.length = x;
sortedArray.push(x);
sortedArray.unshift(x);
sortedArray.splice(0, 0, x);
sortedArray.fill(x, 0, 1);
sortedArray.copyWithin(0, 1, 2);
Note that the SortedArray type provides an isSorted
method which
may be used to check whether the array's contents are correctly sorted
and a resort
method which may be used to forcibly re-sort the contents
of the list and put them into the right order, if they weren't already.
You should not normally need these methods!
sortedArray.isSorted();
sortedArray.resort();
Also of interest to those intending to do more advanced operations on
their SortedArrays are the firstInsertionIndexOf
and lastInsertionIndexOf
methods. These return the first index and the last index, respectively,
where a value can be found or should be inserted into the array.
They are used, for example, to implement the SortedArray's insert
method.
sortedArray.firstInsertionIndexOf(x);
sortedArray.lastInsertionIndexOf(x);
Creating a SortedArray
You can create a SortedArray object using the class constructor or
using the of
and from
static class methods.
The constructor and the from
static method accept an optional
comparator function.
If no comparator was explicitly provided, the created SortedArray uses
native JavaScript <
and >
comparisons to sort elements
in ascending order.
These functions also accept an optional equality function.
An equality function returns a truthy value when its two
arguments represent equivalent values, and a falsey value otherwise.
This function determines what array items are considered equivalent in
calls to, for example, sortedArray.indexOf(value)
.
When no value equality function was explicitly provided, then a
SameValueZero
strict equality implementation is used by default.
The SortedArray implementation assumes that any values a
and b
for which equalityFunc(a, b) === true
,
it is also the case that compareFunc(a, b) === 0
.
Providing functions that violate this assumption may cause
unexpected behavior.
When an existing SortedArray is passed to the SortedArray constructor, if the call to the constructor did not specify either the comparator or the value equality function, then the corresponding functions belonging to the input SortedArray will be copied for the new array.
array = new SortedArray(); // []
array = new SortedArray([3, 1, 2]); // [1, 2, 3]
array = new SortedArray([3, 1, 2], (a, b) => b - a); // [3, 2, 1]
array = SortedArray.of(1, 3, 2); // [1, 2, 3]
array = SortedArray.from([1, 3, 2]); // [1, 2, 3]
array = SortedArray.from([1, 3, 2], (a, b) => b - a); // [3, 2, 1]
array = SortedArray.from([1, 3, "2"], // [1, "2", 3]
(a, b) => +a - +b, (a, b) => a == b
);
There are also ofSorted
and fromSorted
class methods for constructing
a SortedArray. They assume that their input is already sorted.
Passing values to these methods that are not correctly sorted will
cause the SortedArray to behave incorrectly, so use them with care!
array = SortedArray.ofSorted(1, 2, 3); // [1, 2, 3]
array = SortedArray.fromSorted([1, 2, 3]); // [1, 2, 3]
array = SortedArray.fromSorted([3, 2, 1], (a, b) => b - a); // [3, 2, 1]
array = SortedArray.fromSorted([1, "2", 3], // [1, "2", 3]
(a, b) => +a - +b, (a, b) => a == b
);
Using a SortedArray
SortedArrays have a length
property and can be indexed and enumerated
like normal Arrays.
sortedArray = new SortedArray([4, 2, 3, 1]); // [1, 2, 3, 4]
sortedArray[0] // 1
sortedArray.length // 4
for(const element of sortedArray) {} // 1, 2, 3, 4
SortedArrays have insert
and remove
methods. They should be used
to add and remove elements.
You should not normally push
to a SortedArray.
You should consider using remove
to be better practice than using indexOf
and splice
, though either option will work.
There is also an insertSorted
method, which can be used to efficiently
insert the contents of another iterable which is already sorted according
to the same comparator function.
Passing iterables to the insertSorted
method that are not correctly sorted
will cause the SortedArray to behave incorrectly, so use it with care!
sortedArray = new SortedArray();
sortedArray.insert(1); // Insert 1. Returns the new length of the array.
sortedArray.insertSorted([1, 2, 3, 4]); // Insert already-sorted values.
sortedArray.remove(1); // Remove 1. True if the value was in the array.
sortedArray.removeLast(1); // Remove the last 1. True if successful.
sortedArray.removeAll(2); // Remove all 2. Returns the number of items removed.
sortedArray.getRemoveAll(2); // Remove all 2. Returns a SortedArray.
sortedArray.getEqualValues(3); // Get a SortedArray of values equal to 3.
SortedArrays support all of the standard ES6 Array methods and properties. They are summarized briefly here, and you should refer to more detailed documentation for more complete information about these methods.
- [!] means a method should be used with caution. (Read more below.)
- [%] means a method is usually faster with a SortedArray than a normal Array.
All methods not marked with a [!] can be used safely; they should
never invalidate a SortedArray's guarantee of correct ordering,
no matter how they are used or what inputs they are given.
This includes the sort
and reverse
methods, which cause later
operations to use the same new ordering.
Methods like indexOf
or remove
which involve comparisons for finding
an exact element in the array all use
SameValueZero
for comparisons by default.
A different value equality function can be passed as an argument
when creating a new SortedArray.
sortedArray.concat(); // Returns a new, concatenated Array.
sortedArray.copyWithin(); // Copies elements. [!]
sortedArray.entries(); // Returns an iterator of [index, value] pairs.
sortedArray.every(); // True when every element satisfies the predicate.
sortedArray.fill(); // Fill the array with values. [!]
sortedArray.filter(); // Returns a new, filtered SortedArray.
sortedArray.find(); // Get the first matching element.
sortedArray.findIndex(); // Get the index of the first matching element.
sortedArray.flat(); // Returns a flattened Array.
sortedArray.flatMap(); // Returns a flattened mapped Array.
sortedArray.forEach(); // Invokes for every element in the array.
sortedArray.includes(); // True when a value is in the array. [%]
sortedArray.indexOf(); // First index of value, or -1 if not present. [%]
sortedArray.join(); // Join elements to produce a string.
sortedArray.keys(); // Returns an iterator of indexes in the array.
sortedArray.lastIndexOf(); // Last index of value; -1 if not present. [%]
sortedArray.map(); // Map elements in the array to produce a new Array.
sortedArray.pop(); // Remove and return the last element in the array.
sortedArray.push(); // Append a new element to the end of the array. [!]
sortedArray.reduce(); // Reduce the array.
sortedArray.reduceRight(); // Reduce the array, backwards.
sortedArray.reverse(); // Reverse and permanently invert sort order.
sortedArray.shift(); // Remove and return the first element in the array.
sortedArray.slice(); // Get a slice as another SortedArray.
sortedArray.some(); // True if any element matches a predicate.
sortedArray.sort(); // Re-sort and update the array with a new comparator.
sortedArray.splice(); // Remove and/or insert elements in the array. [!]
sortedArray.toLocaleString(); // Get a localized string representation.
sortedArray.toString(); // Get a string representation of the array.
sortedArray.unshift(); // Prepend value to the start of the array. [!]
sortedArray.values(); // Returns an iterator of values in the array.