Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okay, so I have this code in Haskell:

data Bigit = O | I deriving (Show,Eq)

add x y = reverse $ addC O (reverse x) (reverse y)

addC O [] [] = []
addC I [] [] = [I]
addC carry [] r = addC carry [O] r
addC carry l [] = addC carry l [O]
addC carry (left:leftOver) (right:rightOver) = sumBigit :(addC newCarry leftOver    
                                                                             rightOver)
where
    (sumBigit,newCarry)
        = case (left,right,left) of
            (O,O,O) -> (O,O)
            (O,I,O) -> (I,O)
            (I,O,O) -> (I,O)
            (I,I,O) -> (O,I)
            (O,O,I) -> (I,O)
            (O,I,I) -> (O,I)
            (I,O,I) -> (O,I)
            (I,I,I) -> (I,I)

and I need to figure out what it means. So far, I understand that it's using bigits and lists of bigits as the type, and that a bigit is either I (representing a 1) and O (representing a 0).

I figured out that type signatures for add and addC:

add :: [Bigit] -> [Bigit] -> [Bigit]
addC :: Bigit -> [Bigit] -> [Bigit] -> [Bigit]

To help me understand, I've been loaded the code into GHCI and I've been playing around with it. For example, I know that if I tell it:

add [I,O] [I,O]

it gives me [I,I,O], because it follows:

reverse (addC O (reverse x) (reverse y))
reverse (addC O [O,I] [O,I])

But from here, I am confused on how to go about figuring out the addC part. I have the right arguments: a Bigit, and two lists of Bigits. However, I don't understand what pattern to match this to. I am quite confused about what the "carry" means. Can anyone try and help, please?

share|improve this question
1  
The addC function implements a ripple carry adder and the case statement is simply a full adder. You need to learn about binary arithmetic to understand the code, once you do it's almost trivial. – augustss Nov 20 '11 at 20:40
3  
Oh, and the code is wrong. One of the the left in the case statement should be carry. Doesn't matter which one. – augustss Nov 20 '11 at 20:43
10  
Note that the code is actually buggy because it uses left twice and carry not at all. Because of this add [I,O] [I,O] gives the wrong result (obviously 2+2 is not, in fact, 5 -- 1984 not withstanding). – sepp2k Nov 20 '11 at 20:43
5  
en.wikipedia.org/wiki/Adder_%28electronics%29 looks like a pretty good description of what augustss is saying. – MatrixFrog Nov 20 '11 at 21:02
1  
yeah.. sorry. i figured that out when i was comparing it to my sheet. so if i have addC O [O,I] [O,I], would it be: addC carry (O:[I]) (O:[I]) = sumBigit : (addC newCarry leftOver rightOver) which, following the case, would give me addC O (O:[I]) (O:[I]) = O : (addC O [I] [I]) – user1056769 Nov 20 '11 at 21:04
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.