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);
|
2
|
Here is my short implementation of Russian Peasant Multiplication. How can it be improved? Restrictions : only works when a>0,b>0
|
||||||
|
|
|
It can be improved by adding whitespace, proper indentation, and a proper function body:
See? Now it's clear how the three parts of the 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))))))
|
|||
|
|
|
|
It's a stunning example of unparalleled genius, I am in awe of your 1337 hacker skills. |
||||
|
|
|
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? |
||
|
|
|
|
I think it's terrible This is exactly the same code from the compiler's point of view, and (hopefully) a lot clearer
And now I've written it out, I understand it. |
||||||||||
|
|
|
It's terrible. Any other questions? |
||||||
|
|
|
There is still a multiplication in the loop. If you wanted to reduce the cost of the multiplications, you could use this instead:
|
||
|
|
|
This is for a code obfuscation contest? I think you can do better. Use misleading variable names instead of meaningless ones, for starters. |
||
|
|
|
|
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:
|
|||
|
|
|
|
I think it's incomplete, and very hard to read. What specific sort of feedback were you looking for? |
||||||||||||
|
|
|
There is an really easy way to improve this:
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 |
||
|
|
|
|
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! |
||
|
|
|
|
What happens if What happens if 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. |
|||
|
|
|
|
||
|
|
|
|
Does best Trump Impersonation YOUR FIRED |
||||||
|
|
|
Answer with no multiplication or division:
|
|||
|
|
|
|
Why are you guys doing his homework? --larsw |
||
|
|