Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
AtCoder.Extra.Vector
Description
Miscellaneous vector methods.
Since: 1.2.2.0
Documentation
argsort :: (Ord a, Unbox a) => Vector a -> Vector Int Source #
O(nlogn) Returns indices of the vector, stably sorted by their value.
Example
>>>
import Data.Vector.Algorithms.Intro qualified as VAI
>>>
import Data.Vector.Unboxed qualified as VU
>>>
argsort $ VU.fromList [0, 1, 0, 1, 0]
[0,2,4,1,3]