I have a numerical list: myList = [1, 2, 3, 100, 5]

Now if I sort this list to obtain [1, 2, 3, 5, 100]. What I want is the indices of the elements from the original list in the sorted order i.e. [0, 1, 2, 4, 3] --- ala MATLAB's sort function that returns both values and indices.

Thanks in advance.

link|improve this question
feedback

3 Answers

Something like next:

>>> myList = [1, 2, 3, 100, 5]
>>> [i[0] for i in sorted(enumerate(myList), key=lambda x:x[1])]
[0, 1, 2, 4, 3]

enumerate(myList) gives you a list containing tuples of (index, value):

[(0, 1), (1, 2), (2, 3), (3, 100), (4, 5)]

You sort the list by passing it to sorted and specifying a function to extract the sort key (the second element of each tuple; that's what the lambda is for. Finally, the original index of each sorted element is extracted using the [i[0] for i in ...] list comprehension.

link|improve this answer
Works perfectly, thanks. – Gyan Jun 21 '11 at 9:05
1  
you can use itemgetter(1) instead of the lambda function – gnibbler Jun 21 '11 at 10:26
@gnibbler is referring to the itemgetter function in the operator module, FYI. So do from operator import itemgetter to use it. – lazyr Jun 21 '11 at 11:12
feedback
In [15]: myList = [1, 2, 3, 100, 5]

In [16]: sorted(range(len(myList)),key=lambda x:myList[x])
Out[16]: [0, 1, 2, 4, 3]

Also:

 sorted(range(len(myList)),key=myList.__getitem__)
link|improve this answer
1  
Also works with key=myList.__getitem__ – gnibbler Jun 21 '11 at 11:47
that's just nefarious. +1 – TokenMacGuy Jun 21 '11 at 21:22
feedback
>>> sorted(zip([1, 2, 3, 100, 5], range(5)), key = lambda x: x[0])
# returns [(1, 0), (2, 1), (3, 2), (5, 4), (100, 3)]

Zip the lists together: The first element in the tuple will be your original value, the second is the index (range -> [0,1,2,3,4]). As a last step the list with tuples gets sorted by the first element in the tuple.

link|improve this answer
Yes, this works too. Thanks. – Gyan Jun 21 '11 at 9:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.