Top "Sorted" questions

Sorting is the process of applying some order to a collection of items.

Automatically sorted by values map in Java

I need to have an automatically sorted-by-values map in Java - so that It keeps being sorted at any time …

java data-structures collections associative-array sorted
Java: What is the best way to find elements in a sorted List?

I have a List<Cat> sorted by the cats' birthdays. Is there an efficient Java Collections way of …

java list collections findall sorted
Insert into an already-sorted list

With Java, I have a class, known as TestClass, which has a member named Name, which is a string. I …

java arraylist alphabetical sorted
Algorithm to merge multiple sorted sequences into one sorted sequence in C++

I am looking for an algorithm to merge multiple sorted sequences, lets say X sorted sequences with n elements, into …

c++ algorithm merge mergesort sorted