如何获得索引的排列?

时间:2011-06-23 18:39:38

标签: python arrays permutation

我有一个对象列表:

array = [object0,object1,object2,object3,object4]

我希望更改排列项目的顺序:

permutation = [ 2 , 4 , 0 , 1 , 3 ]

python中是否有一个命令可以执行以下操作:

result = Permute(array,permutation)

result = [object2,object4,object0,object1,object3]

我知道我可以通过简单的for循环来实现....

5 个答案:

答案 0 :(得分:5)

如果我们假设permutation0-n的正确排列(每个只出现一次),则以下代码应该有效:

result=[array[i] for i in permutation]

答案 1 :(得分:4)

在Python中,使用list comprehension

很容易做到这一点
result = [array[i] for i in permutation]

答案 2 :(得分:3)

为了完整起见,根本没有 的版本:

seed = ['foo', 'bar', 'baz']
permutation = [1, 2, 0]
result = map(lambda i: seed[i], permutation)
print result # --> ['bar', 'baz', 'foo']
但是,我宁愿坚持列表理解人员。 ;)

答案 3 :(得分:0)

使用numpy中的shuffle方法

import numpy as np
arr = np.arange(10)
np.random.shuffle(arr)
print(arr)

[1 7 5 2 9 4 3 6 0 8]

参考: https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.random.shuffle.html

答案 4 :(得分:0)

您可以使用索引交换。 您a有两个数组a和b

def swap_random(a, b):
"""Randomly swap entries in two arrays."""
# Indices to swap
    swap_inds = np.random.random(size=len(a)) < 0.5 # your threshold 

# Make copies of arrays a and b for output
    a_out = np.copy(a)
    b_out = np.copy(b)

# Swap values
   a_out[swap_inds] = b[swap_inds]
   b_out[swap_inds] = a[swap_inds]

   return a_out, b_out

所以,做测试

d = np.array(range(0,15))
r = np.array(range(16,31))

display(d,r)

>>> array([ 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14])
>>> array([16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30])


display(swap_random(d, r))
>>> (array([ 0, 17,  2,  3, 20, 21, 22,  7, 24, 25, 10, 11, 28, 13, 14]),
>>> array([16,  1, 18, 19,  4,  5,  6, 23,  8,  9, 26, 27, 12, 29, 30]))
相关问题