vote up 3 vote down star
1

What is a good way to find the index of an element in an array in python? Note that the array may not be sorted. Is there a way to specify what comparison operator to use?

flag

60% accept rate

6 Answers

vote up 3 vote down check

The best way is probably to use the list method .index.

For the objects in the list, you can do something like:

def __eq__(self, other):
    return self.Value == other.Value

with any special processing you need.

You can also use a for/in statement with enumerate(arr)

Example of finding the index of an item that has value > 100.

for index, item in enumerate(arr):
    if item > 100:
        return index, item

Source

link|flag
vote up -1 vote down

Depending on what you need to do, searching in an unsorted array is not a good idea.

That you're asking about a "good way" makes one thing you do care about efficiency, and you must realize that changing your algorithm (to binary search in a sorted array, for instance) will provide much higher benefits than micro-optimizing the method you use to linearly search it.

link|flag
vote up 0 vote down

how's this one?

def global_index(lst, test):
    return ( pair[0] for pair in zip(range(len(lst)), lst) if test(pair[1]) )

Usage:

>>> global_index([1, 2, 3, 4, 5, 6], lambda x: x>3)
<generator object <genexpr> at ...>
>>> list(_)
[3, 4, 5]
link|flag
1  
Get pythonic: def global_index(lst, test): return (idx for idx, val in enumerate(lst) if test(val) ) – recursive Mar 3 at 4:01
filter(lambda x: x>3, [1,2,3,4,5,6]) – John Fouhy Mar 3 at 21:15
vote up 4 vote down

The index method of a list will do this for you. If you want to guarantee order, sort the list first using sorted(). Sorted accepts a cmp or key parameter to dictate how the sorting will happen:

a = [5, 4, 3]
print sorted(a).index(5)

Or:

a = ['one', 'aardvark', 'a']
print sorted(a, key=len).index('a')
link|flag
vote up 11 vote down

From Dive Into Python:

>>> li
['a', 'b', 'new', 'mpilgrim', 'z', 'example', 'new', 'two', 'elements']
>>> li.index("example")
5
link|flag
vote up 5 vote down

There is the index method, i = array.index(value), but I don't think you can specify a custom comparison operator. It wouldn't be hard to write your own function to do so, though:

def custom_index(array, compare_function):
    for i, v in enumerate(array):
        if compare_function(v):
            return i
link|flag

Your Answer

Get an OpenID
or

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