Using Haskell's map function to calculate the sum of a list

前端 未结 8 1998
太阳男子
太阳男子 2020-11-28 16:29

Haskell

addm::[Int]->Int
addm (x:xs) = sum(x:xs)

I was able to achieve to get a sum of a list using sum fu

相关标签:
8条回答
  • 2020-11-28 16:53

    I realize this question has been answered, but I wanted to add this thought...

    listLen2 :: [a] -> Int
    listLen2 = sum . map (const 1)
    

    I believe it returns the constant 1 for each item in the list, and returns the sum! Might not be the best coding practice, but it was an example my professor gave to us students that seems to relate to this question well.

    0 讨论(0)
  • 2020-11-28 16:54

    After some insights I have to add another answer: You can't get the sum of a list with map, but you can get the sum with its monadic version mapM. All you need to do is to use a Writer monad (see LYAHFGG) over the Sum monoid (see LYAHFGG).

    I wrote a specialized version, which is probably easier to understand:

    data Adder a = Adder a Int
    
    instance Monad Adder where
      return x = Adder x 0
      (Adder x s) >>= f = let Adder x' s' = f x
                          in Adder x' (s + s') 
    
    toAdder x = Adder x x
    
    sum' xs = let Adder _ s = mapM toAdder xs in s  
    
    main = print $ sum' [1..100]
    --5050
    

    Adder is just a wrapper around some type which also keeps a "running sum." We can make Adder a monad, and here it does some work: When the operation >>= (a.k.a. "bind") is executed, it returns the new result and the value of the running sum of that result plus the original running sum. The toAdder function takes an Int and creates an Adder that holds that argument both as wrapped value and as running sum (actually we're not interested in the value, but only in the sum part). Then in sum' mapM can do its magic: While it works similar to map for the values embedded in the monad, it executes "monadic" functions like toAdder, and chains these calls (it uses sequence to do this). At this point, we get through the "backdoor" of our monad the interaction between list elements that the standard map is missing.

    0 讨论(0)
  • 2020-11-28 16:57

    As the other answers point out, the "normal" way is to use one of the fold functions. However it is possible to write something pretty similar to a while loop in imperative languages:

    sum' [] = 0
    sum' xs = head $ until single loop xs where 
       single [_] = True
       single _ = False
       loop (x1 : x2 : xs) = (x1 + x2) : xs 
    

    It adds the first two elements of the list together until it ends up with a one-element list, and returns that value (using head).

    0 讨论(0)
  • 2020-11-28 16:57

    map can never be the primary tool for summing the elements of a container, in much the same way that a screwdriver can never be the primary tool for watching a movie. But you can use a screwdriver to fix a movie projector. If you really want, you can write

    import Data.Monoid
    import Data.Foldable
    
    mySum :: (Foldable f, Functor f, Num a)
          => f a -> a
    mySum = getSum . fold . fmap Sum
    

    Of course, this is silly. You can get a more general, and possibly more efficient, version:

    mySum' :: (Foldable f, Num a) => f a -> a
    mySum' = getSum . foldMap Sum
    

    Or better, just use sum, because its actually made for the job.

    0 讨论(0)
  • 2020-11-28 17:09

    You can't really use map to sum up a list, because map treats each list element independently from the others. You can use map for example to increment each value in a list like in

    map (+1) [1,2,3,4] -- gives [2,3,4,5]
    

    Another way to implement your addm would be to use foldl:

    addm' = foldl (+) 0
    
    0 讨论(0)
  • 2020-11-28 17:09

    Here it is, the supposedly impossible definition of sum in terms of map:

    sum' xs  =  let { ys = 0 : map (\(a,b) -> a + b) (zip xs ys) } in last ys
    

    this actually shows how scanl can be implemented in terms of map (and zip and last), the above being equivalent to foldl (+) 0 xs === last $ scanl (+) 0 xs:

    scanl' f z xs  =  let { ys = z : map (uncurry f) (zip ys xs) } in ys
    

    I expect one can calculate many things with map, arranging for all kinds of information flow through zip.

    edit: the above is just a zipWith in disguise of course (and zipWith is kind of a map2):

    sum' xs  =  let { ys = 0 : zipWith (+) ys xs } in last ys
    

    This seems to suggest that scanl is more versatile than foldl.

    0 讨论(0)
提交回复
热议问题