Sort和UnSort的小技巧

Sort和UnSort的小技巧:

 

记录sortidx,对sortidx再从小到大排序就可以得到用于还原的unsortidx.

 

对于序列A:

 

1 sort_idx = np.argsort(A)
2 
3 un_sort_idx = np.argsort(sort_idx)
4 
5 A = A[sort_idx][un_sort_idx]

 

posted @ 2019-03-11 19:48  酱_油  阅读(527)  评论(0编辑  收藏  举报