I tried to solve it myself but I could not get any clue.
Please help me to solve this.
|
|
Are you supposed to use itoa() for this assignment? Because then you could use that to convert to a base 3 string, drop the last character, and then restore back to base 10. |
|||
|
|
|
Using the mathematical relation:
We have
If you can only use 32-bit integers,
The |
|||||||
|
|
EDIT: Oops, I misread the title's question. Multiply operator is forbidden as well. Anyway, I believe it's good not to delete this answer for those who didn't know about dividing by non power of two constants. The solution is to multiply by a magic number and then to extract the 32 leftmost bits: divide by 3 is equivalent to multiply by 1431655766 and then to shift by 32, in C:
|
|||||||||||||||
|
|
Here's a solution implemented in C++:
;-) |
|||
|
|
EDIT: Tested and working perfectly fine :( Hope this helped. :-) |
|||||||||||
|
|
Sounds like homework :) I image you can write a function which iteratively divides a number. E.g. you can model what you do with a pen and a piece of paper to divide numbers. Or you can use shift operators and + to figure out if your intermediate results is too small/big and iteratively apply corrections. I'm not going to write down the code though ... |
|||
|
|
|
||||
|
|
|
you can use a property from the numbers: A number is divisible by 3 if its sum is divisible by3. Take the individual digits from itoa() and then use switch function for them recursively with additions and itoa() Hope this helps |
|||
|
|
|
This is very easy, so easy I'm only going to hint at the answer -- Basic boolean logic gates (and,or,not,xor,...) don't do division. Despite this handicap CPUs can do division. Your solution is obvious: find a reference which tells you how to build a divisor with boolean logic and write some code to implement that. |
|||||
|
|
How about this, in some kind of Python like pseudo-code. It divides the answer into an integer part and a fraction part. If you want to convert it to a floating point representation then I am not sure of the best way to do that.
Note that this will not work for negative numbers. To fix that you need to modify the algorithm:
|
||||
|
|
|
for positive integer division
|
||||
|
||||
|
|
|
Convert 1/3 into binary so 1/3=0.01010101010101010101010101 and then just "multiply" whit this number using shifts and sum |
|||
|
|
|
|||
|
|
|
There is a solution posted on http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=3776384&page=1&extra=#pid22323016
Please say something about that, thanks:) |
|||||
|
|
Slow and naive, but it should work, if an exact divisor exists. Addition is allowed, right?
Extending it for fractional divisors is left as an exercise to the reader. Basically test for +1 and +2 I think... |
|||||||||
|