Top "Sorting" questions

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

How do I sort a Set to a List in Java?

In Java, I have a Set, and I want to turn it into a sorted List. Is there a method …

java sorting collections
How to sort a dataFrame in python pandas by two or more columns?

Suppose I have a dataframe with columns a, b and c, I want to sort the dataframe by column b …

python pandas python-2.7 sorting data-analysis
How may I sort a list alphabetically using jQuery?

I'm a bit out of my depth here and I'm hoping this is actually possible. I'd like to be able …

javascript jquery dom sorting
How to sort an array of objects with jquery or javascript

I have an array of objects: var array = [(id, name, value),(id, name, value)]; //and so on How do I …

javascript jquery sorting multidimensional-array
How to sort a list of strings numerically?

I know that this sounds trivial but I did not realize that the sort() function of Python was weird. I …

python sorting
Sort a single String in Java

Is there a native way to sort a String by its contents in java? E.g. String s = "edcba" -&…

java string sorting
How to sort a list of lists by a specific index of the inner list?

I have a list of lists. For example, [ [0,1,'f'], [4,2,'t'], [9,4,'afsd'] ] If I wanted to sort the outer list by …

python sorting
How to sort List of objects by some property

I have simple class public class ActiveAlarm { public long timeStarted; public long timeEnded; private String name = ""; private String description = ""; private …

java sorting sort-object
VBA array sort function?

I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other sort …

arrays sorting vba vb6 ms-project
SQL how to make null values come last when sorting ascending

I have a SQL table with a datetime field. The field in question can be null. I have a query …

sql sorting sql-order-by