2005年06月14日
花映塚
- 2005-06-14 (Tue)
- 遊び
体験版Ver0.02 を小一時間ほどやってノーマルで全員クリア.前回のバージョンから何が変わっているか良く分からなかったり.とりあえず,使える自機が増えることを切に願う.
それにしても,キーボードでやってると左手が痛すぎる... 中指の連射とか薬指でのスピードのこまめな切り替えとか...
- Comments: 0
- TrackBack (Close): -
リスト2分割
研究室のメンバーが Haskell でリストをワンパスで2分割するプログラムを書いていたので便乗.
halfSplit l = let (len, ret) = halfSplit' (div len 2) l in ret where halfSplit' _ [] = (0, ([],[])) halfSplit' n (x:xs)= let (len, ps) = halfSplit' (n-1) xs in (len + 1, if n > 0 then (x:fst ps, snd ps) else (fst ps, x:snd ps)) halfSplit2 l = let (len, ret) = halfSplit' (div len 2) l in ret where halfSplit' _ [] = (0, ([],[])) halfSplit' n (xxs@(x:xs))= let (len, ps) = halfSplit' (n-1) xs in (len + 1, if n > 0 then (x:fst ps, snd ps) else ([], xxs))
halfSplit だとリストの後ろ半分も再構成しているが,halfSplit2 のようにすると後ろ半分の再構成がない分簡約ステップ数が減る.実際,Hugs で :set +s して簡約数とかを見てみると,
Main> halfSplit [1..100] (4619 reductions, 8790 cells) Main> halfSplit2 [1..100] (3832 reductions, 7950 cells)
のようにそれなりに差が出る.
- Comments: 0
- TrackBack (Close): -