vote up -8 vote down star
2

Here is my short implementation of Russian Peasant Multiplication. How can it be improved?

Restrictions : only works when a>0,b>0

for(p=0;p+=(a&1)*b,a!=1;a>>=1,b<<=1);
flag

75% accept rate
I like optimal code so I'll give you an upvote, but you should have admitted in the above comments that your pre-edited post didn't have the initialization. – Lance Roberts Nov 4 '08 at 1:59
@Lance yes,you are right,I will modify this – spx2 Nov 4 '08 at 2:02
My upvote because short onliner indentation MAY be poor. Though, it'd be very pleasant to read nice, indented code. – temoto Mar 6 at 18:22

16 Answers

vote up 27 vote down check

It can be improved by adding whitespace, proper indentation, and a proper function body:

int peasant_mult (int a, int b) {
  for (p = 0;
       p += (a & 1) * b, a != 1;
       a /= 2, b *= 2);
  return p;}

See? Now it's clear how the three parts of the for declaration are used. Remember, programs are written mainly for human eyes. Unreadable code is always bad code.

And now, for my personal amusement, a tail recursive version:

(defun peasant-mult (a b &optional (sum 0))
  "returns the product of a and b,
   achieved by peasant multiplication."
  (if (= a 1)
      (+ b sum)
      (peasant-mult (floor (/ a 2))
                    (* b 2)
                    (+ sum (* b (logand a 1))))))
link|flag
vote up 14 vote down

It's a stunning example of unparalleled genius, I am in awe of your 1337 hacker skills.

link|flag
I think you meant Haxx0r instead of hacker though :) – Greg Beech Nov 4 '08 at 1:43
...and ztunning? – Guge Dec 15 '08 at 20:31
vote up 13 vote down

I think it's a pretty poor attempt bragging about code which, although being supposedly smart, it's obfuscated to the point that no sane developer would ever use it on production code.

...Once again, what was your question?

link|flag
vote up 10 vote down

I think it's terrible This is exactly the same code from the compiler's point of view, and (hopefully) a lot clearer

int sum = 0;
while(1)
{
    sum += (a & 1) * b;
    if(a == 1)
       break;

    a = a / 2;
    b = b * 2;
}

And now I've written it out, I understand it.

link|flag
yes,that was my first implementation :) then I remembered some tricks :) – spx2 Nov 4 '08 at 1:31
I hope I never have to write code with you, ever. I can't see why anyone would take something like the above and produce what you have, unless they were making a half-arsed attempt at an Obfuscated C contest entry. :| – Rob Howard Nov 4 '08 at 1:41
Rob, it's obvious in hindsight, but I actually thought you were talking to me to start with, not spx2! – Airsource Ltd Nov 4 '08 at 1:46
I would think that bit shifting would be faster than division or multiplication, and I'm not sure if all compilers would do it that way. (Though they might, not sure here). – Lance Roberts Nov 4 '08 at 1:58
bit shifting IS faster than multiplication or division BUT any decent compiler will optimise a multiplication by a constant into a set of bitshifts if at all possible. The only compiler I ran into that didn't is an IAR H8 compiler. I suspect that's not the target platform here. – Airsource Ltd Nov 4 '08 at 3:17
vote up 7 vote down

It's terrible. Any other questions?

link|flag
for the moment no :) but thank you anyway – spx2 Nov 4 '08 at 1:32
You're welcome :) (BTW: Tanoku and Airsource gave better answers :) ) – F.D.Castel Nov 4 '08 at 1:35
Subtle as a furious rhinoceros in a fine crystals shop... when I grow up I wanna be like you ;-) – schonarth Feb 6 at 17:13
vote up 5 vote down

There is still a multiplication in the loop. If you wanted to reduce the cost of the multiplications, you could use this instead:

for(p=0;p+=(-(a&1))&b,a!=1;a>>=1,b<<=1);
link|flag
yes,that is true my friend,fantastic ! thank you :) but the restriction b>0 has saved you here,were it not for that you would've been wrong. – spx2 Nov 4 '08 at 1:42
vote up 4 vote down

This is for a code obfuscation contest? I think you can do better. Use misleading variable names instead of meaningless ones, for starters.

link|flag
vote up 4 vote down

I don't find it particularly terrible, obfuscated or unreadable, as others put it, and I don't understand all those downvotes. This said, here is how I would "improve" it:

// Russian Peasant Multiplication ( p <- a*b, only works when a>0, b>0 )
// See http://en.wikipedia.org/wiki/Ancient_Egyptian_multiplication
for( p=0; p+=(a&1)*b, a!=1; a>>=1,b<<=1 );
link|flag
vote up 4 vote down

So many downvotes. I don't see any harm he caused by posting this!

P.S. For "learning"[playing around], it's ok to code like that. But professionally I'd not expect you to code like this!

link|flag
vote up 3 vote down

There is an really easy way to improve this:

p = a * b;

It has even the advantage that a or b could be less than 0.

If you look how it really works, you will see, that it is just the normal manual multiplication performed binary. You computer does it internaly this way (1), so the easiest way to use the russian peasant method is to use the builtin multiplication.

(1) Maybe it has a more sophasticated algorithm, but in principle you can say, it works with this algorithm

link|flag
vote up 2 vote down

I think it's incomplete, and very hard to read. What specific sort of feedback were you looking for?

link|flag
a,b are the numbers,after the for loop p will be their product. there,it's not hard to read. – spx2 Nov 4 '08 at 1:23
it is harder to read than it needs to be, and the person who wrote it is not the person to judge whether it is hard to read. What's wrong with adding a few linebreaks? – Airsource Ltd Nov 4 '08 at 1:24
adding linebreaks breaks compactness :) – spx2 Nov 4 '08 at 1:30
you mean "adding linebreaks breaks unreadability". Doesn't change the compiled size. – Airsource Ltd Nov 4 '08 at 1:32
1  
Why don't you just write in assembly and stop screwing around with these play languages like C. You're obviously an outstanding programmer and you should probably go into teaching or consulting. – tim Nov 4 '08 at 1:53
vote up 2 vote down

p is not initialised.

What happens if a is zero?

What happens if a is negative?

Update: I see that you have updated the question to address the above problems. While your code now appears to work as stated (except for the overflow problem), it's still less readable than it should be.

link|flag
p is to be initialized with 0 multiplication here works just for a>0,b>0 :) thanks for asking – spx2 Nov 4 '08 at 1:28
vote up 2 vote down
int RussianPeasant(int a, int b)
{
    // sum = a * b
    int sum = 0;
    while (a != 0)
    {
        if ((a & 1) != 0)
            sum += b;
        b <<= 1;
        a >>= 1;
    }
    return sum;
}
link|flag
vote up 0 vote down

How can it be improved?

Does best Trump Impersonation

YOUR FIRED

link|flag
that's "you're" – kajaco Nov 11 '08 at 16:34
hehe loved that... The whole build up and then a fail in grammar. ;) – Ray Booysen Feb 6 at 11:03
Aahhahahahaha :))) – spx2 Sep 29 at 2:26
vote up 0 vote down

Answer with no multiplication or division:

function RPM(int a, int b){
    int rtn;
    for(rtn=0;rtn+=(a&1)*b,a!=1;a>>=1,b<<=1);
    return rtn;
}
link|flag
vote up -1 vote down

Why are you guys doing his homework?

--larsw

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.