Real World Haskell
実戦で学ぶ関数型言語プログラミング
Bryan O'Sullivan, John Goerzen, Don Stewart(著)
山下 伸夫, 伊東 勝利
株式会社タイムインターメディア(翻訳)
開発環境
- OS X Lion - Apple(OS)
- BBEdit - Bare Bones Software, Inc.(Text Editor)
- プログラミング言語: Haskell (純粋関数型)
Real World Haskell』(Bryan O'Sullivan、John Goerzen、Don Stewart(著)、山下 伸夫、伊東 勝利、株式会社タイムインターメディア(翻訳)、オライリー・ジャパン、2009年、ISBN978-4-87311-423-3)の4章(関数プログラミング)の4.5(リストを使う)の練習問題2.を解いてみる。
2.
コード(BBEdit)
Sample.hs
-- file: Sample.hs splitWith :: (a -> Bool) -> [a] -> [[a]] splitWith f [] = [] splitWith f xs | null as = splitWith f bs | otherwise = as:(splitWith f bs) where ab = span f xs as = fst ab bs = snd ( break f (snd ab) )
入出力結果(Terminal)
$ ghci GHCi, version 7.4.2: http://www.haskell.org/ghc/ :? for help Loading package ghc-prim ... linking ... done. Loading package integer-gmp ... linking ... done. Loading package base ... linking ... done. Prelude> :load Sample.hs [1 of 1] Compiling Main ( Sample.hs, interpreted ) Ok, modules loaded: Main. *Main> splitWith odd [] [] *Main> splitWith odd [1] [[1]] *Main> splitWith odd [2] [] *Main> splitWith odd [1,1] [[1,1]] *Main> splitWith odd [1,2] [[1]] *Main> splitWith odd [2,1] [[1]] *Main> splitWith odd [2,2] [] *Main> splitWith odd [1,1,1,1,1] [[1,1,1,1,1]] *Main> splitWith odd [1,2,1,1,2] [[1],[1,1]] *Main> splitWith odd [2,2,1,1,2] [[1,1]] *Main> splitWith odd [2,2,1,1,1] [[1,1,1]] *Main> splitWith odd [1,2,2,1,1] [[1],[1,1]] *Main> splitWith odd [1,2,1,2,1] [[1],[1],[1]] *Main> splitWith odd [2,1,2,1,2] [[1],[1]] *Main> :quit Leaving GHCi. $
0 コメント:
コメントを投稿