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?

addCfunction 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:40leftin the case statement should becarry. Doesn't matter which one. – augustss Nov 20 '11 at 20:43lefttwice andcarrynot at all. Because of thisadd [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