伝承守護者ポルケルト

コメント(0)

quicksort [] = [] quicksort (x:xs) = quicksort small ++ (x : quicksort large) where small = [y | y <- xs, y <= x] large = [y | y <- xs, y > x]



コメントを書き込む


Protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

まだコメントがありません。

×