[Haskell-cafe] Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell

2011-05-20 Thread KC
Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell --- --- module SelectionProblem where import

Re: [Haskell-cafe] Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell

2011-05-20 Thread Daniel Peebles
Do you have some sort of link aggregator that auto-posts to haskell-cafe? On Sat, May 21, 2011 at 12:09 AM, KC kc1...@gmail.com wrote: Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell

[Haskell-cafe] -- Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell -- Extension for Pearls of Functional Algorithm Design by Richard Bird, -- 2010, page

2011-04-28 Thread caseyh
-- Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell -- O(log|X|+log|Y|+log|Z|) performance -- Question: is there a way to get the type signature as the following: -- smallest :: (Ord a) = Int - [Array Int a] - a module SelectionProblem where

Re: [Haskell-cafe] -- Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell

2011-04-26 Thread Jason Dagit
Do you have a question for the group or something you want to discuss? On Mon, Apr 25, 2011 at 8:50 PM, cas...@istar.ca wrote: -- Extension for Pearls of Functional Algorithm Design by Richard Bird, -- 2010, page 25 #Haskell -- This version assumes 3 disjoint ordered sets represented as

[Haskell-cafe] -- Extension for Pearls of Functional Algorithm Design by Richard Bird, 2010, page 25 #Haskell

2011-04-25 Thread caseyh
-- Extension for Pearls of Functional Algorithm Design by Richard Bird, -- 2010, page 25 #Haskell -- This version assumes 3 disjoint ordered sets represented as lists. -- So either: xy XOR xy -- Since it uses lists it is no faster than the divide and conquer approach. -- I might try to convert