I needed some help converting this C code into assembly:
Idea is:
sz = length of v
k = allocate array of ints, length v
if type = 0
k[i] = length v[i]
else
k[i] = sum v[i]
sort k the simplest swapping way: each time when k[i] and k[j] is swapped, swap v[i] and v[j] too
deallocate k
gcc -O0 -S test.c
(compile to assembler)