sortlisten
Sortlisten is the German term for lists whose elements are arranged according to a defined ordering criterion, such as numeric ascending order or lexicographic order. In computer science, a sorted list is a data structure that maintains its elements in nondecreasing (or nonincreasing) order. This ordering enables efficient iteration and supports faster search via binary search, at the cost of more expensive updates.
There are static and dynamic variants. A static sorted list is fixed after creation, while a dynamic
Common implementations include array-based and linked-list-based structures, as well as more advanced forms. An array-based sorted
Applications include in-memory databases, indexing, and libraries or modules that require ordered iteration or range queries.
In German-language computing literature, Sortlisten is commonly used to refer to lists kept in sorted order,