Anyone worth their salt in Haskell knows about lists, and the cons operator (:).
Cons is our friend. But sometimes I want to add to the end of a list instead.
xs `append` x = xs ++ [x]
This, sadly, is not an efficient way to implement it.
I wrote up Pascal's triangle in Haskell, but I had to use the ++ [x] anti-idiom:
ptri = [1] : mkptri ptri
mkptri (row:rows) = newRow : mkptri rows
where newRow = zipWith (+) row (0:row) ++ [1]
imho, this is a lovely readable Pascal's triangle and all, but the anti-idiom irks me. Can someone explain to me (and, ideally, point me to a good tutorial) on what the idiomatic data structure is for cases where you want to append to the end efficiently? I'm hoping for near-list-like beauty in this data structure and its methods. Or, alternately, explain to me why this anti-idiom is actually not that bad for this case (if you believe such to be the case).
[edit] The answer I like the best is Data.Sequence, which does indeed have "near-list-like beauty." Not sure how I feel about the required strictness of operations. Further suggestions and different ideas are always welcome.
import Data.Sequence ((|>), (<|), zipWith, singleton)
import Prelude hiding (zipWith)
ptri = singleton 1 : mkptri ptri
mkptri (seq:seqs) = newRow : mkptri seqs
where newRow = zipWith (+) seq (0 <| seq) |> 1
Now we just need List to be a class, so that other structures can use its methods like zipWith without hiding it from Prelude, or qualifying it. :P
newRow = 1 <| zipWith (+) seq (drop 1 seq) |> 1, which imho is very beautiful for expressing Pascal's triangle by explicitly showing the 1 at both ends of every row. Sadly, I got this error:cannot mix '<|' [infixr 5] and '|>' [infixl 5] in the same infix expression– Dan Burton Mar 5 '11 at 22:46newRowis very beautiful. I had a not-ideally-successful go at it with ZipLists (I was planning something more general, but it was too complicated), hpaste.org/44613/pascals_ziplist. With the idiom brackets of theshepreprocessor, and a few homemade combinators it looks like this:pascalsNextLine old = 1 <& (| tail' old + init' old |) &> 1It would be interesting to know if there is anything to generalize in this idea of yours. – applicative Mar 8 '11 at 5:44|>and<|have the same precedence, so they can't go next to eachother. I wonder if there is a way to change that, without it breaking other file, sorta on a per file basis. – Tyr Mar 13 '11 at 14:20