Merge Sort (in MatLab). function s = mysort(a). % sort vector a into nodecreasing order. n = length(a);. if n <= 1. s = a;. else ...
確定! 回上一頁