i will give you an example with 5 items(numbers)
Before sort : array = [ 1,3 4,7 0,23 5,78 1,26]
after sort : array = [ 0,23 1,26 1,3 4,7 5,86]
i need an additional array that will be : J = [ 3 5 1 2 4]
the location of the items(of the sorted array) in the array before the sorting..
The...