a simple, generically type-annotated, sorted list
Create a sorted list like this:
>>> from srtlst import SortedList
>>> s = SortedList([5, 3, 1])
>>> print(s)
[1, 3, 5]
A SortedList
mimics a regular list
in most ways, but remains sorted:
>>> s = SortedList([5, 3, 1])
>>> s.extend([6, 2, 4])
>>> print(s)
[1, 2, 3, 4, 5, 6]
You can use add()
instead of insert()
or append()
:
>>> s = SortedList([5, 3, 1])
>>> s.add(3)
>>> s.add(2)
>>> print(s)
[1, 2, 3, 3, 5]
If you need your data to be sorted in descending order use the optional reverse
parameter:
>>> s = SortedList([1, 2, 3], reverse=True)
>>> s.add(4)
>>> print(s)
[4, 3, 2, 1]
If your data is not inherently sortable, or you want to sort it in a non-default way, you can use SortedListByKey
and supply a function to sort it (just like with sorted()
):
>>> from srtlst import SortedListByKey
>>> my_function = lambda x: x * (-1) ** x
>>> s = SortedListByKey([1, 2, 3, 4], key=my_function)
>>> print(s)
[3, 1, 2, 4]
SortedListByKey
behaves like a SortedList
in all other ways, and indeed inherits from it.
However, when type checking, a SortedList
only accepts values for which a less-than (<
) method is defined (__lt__()
).
SortedListByKey
accepts any type of object, as long as an appropriate key function is provided.
The key function must return comparable values for the items in the list.
No surprises here:
$ pip install srtlst
SortedList
and SortedListByKey
are type-hinted according to PEP 484
and the srtlst
library is itself checked using mypy --strict
.
Type hints for both containers can be provided using type arguments, just like with list
and other containers:
s: SortedList[int] = SortedList([3, 2, 1])
This library aims to provide a simple sorted list without any dependencies which is ready for use.
Some of the list operations are reimplemented to take advantage of the list's sortedness using Python's standard bisect
library.
This library should suit your needs if you just want to keep stuff sorted, without having to implement the bookkeeping yourself. However, if your sorting needs arise from the need for performance, you should also consider this library: sortedcontainers.
Documentation is work in progress. For now the Python's built-in help function can be of service:
>>> from srtlst import SortedList
>>> help(SortedList)