Subscribe with livedoor Reader
Add to My Yahoo!
Twitter
TwitterへのAA投稿AA入力支援サービスAAリスト作成、AA登録・タグ゙付け機能を公開しています。 コピペ・リンクフリー。

NEW! 2014/06/14 : AAを画像化するアイコンAAに、LINEスタンプサイズを追加しました。

TwitAA 2012-02-08 02:56:36

TwitAAでつぶやく
Create IconAA

mergeSort :: (Ord a) => [a] -> [a]
mergeSort xs = ms (length xs) xs
where
ms _ [] = []
ms _ [x] = [x]
ms n xs = merge (ms m as) (ms (n - m) bs)
where
m = div n 2
(as, bs) = splitAt m xs
merge xs [] = xs
merge [] ys = ys
merge xs@(x : xs') ys@(y : ys')
| x <= y = x : merge xs' ys
| otherwise = y : merge xs ys'

0
あなたの評価: なし
tweetマージソートだね
リンク : 関連AAリスト

ランダム AAリスト

スポンサード リンク


view counter