quicksort [] = [] quicksort (x:xs) = quicksort small ++ (x : quicksort large) where small = [y | y <- xs, y <= x] large = [y | y <- xs, y > x]
名前
コメント
画像添付(任意):10 MB以内
Protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
まだコメントがありません。
Protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
まだコメントがありません。