How would you divide a number by 3 without using *, /, +, -, %, operators?
The number may be signed or unsigned.
|
|
There is a simple function I found here.
But it's using the
As Jim commented this works because:
|
|||||||||||||||||||||
|
|
Idiotic conditions call for an idiotic solution:
If also the decimal part is needed, just declare Explanation of how it works
If you write 30 bytes then read back the file in units of 3, you get 10 "units". 30 / 3 = 10 |
|||||||||||||||||||||
|
|
|||||||||||||
|
|
||||
|
|
|
Using cloud computing :D |
|||||||||||||||||||||
|
|
Use inline assembler: (also works for negative numbers)
|
|||||||||||||
|
|
Use itoa to convert to base 3 string. Drop last trit and convert back to base 10.
|
|||||
|
|
The request says "a number", not "any number", so:
Job done, but for extra marks, you could implement a dictionary of commonly requested multiples of three. |
|||||||||||||
|
|
(note: see Edit 2 below for a better version!) This is not as tricky as it sounds, because you said "without using the [..]
then just say Edit: You can go on and replace the
|
|
|||
|
|||
|
|||
|
|||
|
|
It is easily possible on the Setun computer. To divide an integer by 3, shift right by 1 place. I'm not sure whether it's strictly possible to implement a conforming C compiler on such a platform though. We might have to stretch the rules a bit, like interpreting "at least 8 bits" as "capable of holding at least integers from -128 to +127". |
||||
|
|
|
Here's my solution:
First, note that
Now, the rest is simple!
Now all we have to do is add together these bit shifted values of a! Oops! We can't add though, so instead, we'll have to write an add function using bit-wise operators! If you're familiar with bit-wise operators, my solution should look fairly simple... but just in-case you aren't, I'll walk through an example at the end. Another thing to note is that first I shift left by 30! This is to make sure that the fractions don't get rounded off.
It's simply carry addition that you learned as a child!
This implementation failed because we can not add all terms of the equation:
Suppose the reslut of |
|||||
|
|
Since it's from Oracle, how about a lookup table of pre calculated answers. :-D |
||||
|
|
|
To divide a 32-bit number by 3 one can multiply it by Now all that's left to do is to implement multiplication using bit operations and shifts... |
|||||
|
|
Yet another solution. This should handle all ints (including negative ints) except the min value of an int, which would need to be handled as a hard coded exception. This basically does division by subtraction but only using bit operators (shifts, xor, & and complement). For faster speed, it subtracts 3 * (decreasing powers of 2). In c#, it executes around 444 of these DivideBy3 calls per millisecond (2.2 seconds for 1,000,000 divides), so not horrendously slow, but no where near as fast as a simple x/3. By comparison, Coodey's nice solution is about 5 times faster than this one.
This is c# because that's what I had handy, but differences from c should be minor. |
||||
|
|
|
This one is the classical division algorithm in base 2:
|
||||
|
|
|
Using counters is a basic solution.
It is easy to perform also a modulus function, check remarks. |
||||
|
|
|
It's really quite easy.
(I have of course omitted some of the program for the sake of brevity.) If the programmer gets tired of typing this all out, I'm sure that he or she could write a separate program to generate it for him. I happen to be aware of a certain operator, |
|||||
|
|
Would it be cheating to use the For example, in Javacript, you can do
|
||||
|
|
|
Write the program in Pascal and use the Since the question is tagged c, you can probably write a function in Pascal and call it from your C program; the method for doing so is system-specific. But here's an example that works on my Ubuntu system with the Free Pascal
To build:
Sample execution:
|
||||
|
|
|
First that I've come up with.
EDIT: Sorry, I didn't notice the tag |
||||
|
|
|
Didn't cross-check if this answer is already published. If the program need to be extended to floating numbers, the numbers can be multiplied by 10*number of precision needed and then the following code can be again applied.
|
||||
|
|
|
|||||
|
|
This should work for any divisor, not only three. Currently only for unsigned, but extending it to signed should not be that difficult.
|
||||
|
|
|
Use cblas, included as part of OS X's Accelerate framework.
|
||||
|
|
|
solution using fma() library function, works for any positive number.
|
||||
|
|
|
using BCMath in PHP:
MySQL (it's an interview from Oracle)
PASCAL:
x86-64 ASM:
|
||||
|
|
|
The following script generates a C program that solves the problem without using the operators
|
||||
|
|
|
Using Hacker's Delight Magic number calculator
Where fma is a standard library function defined in |
||||
|
|
|
How about this approach (c#)?
|
||||
|
|
|
I think the right answer is: Why would I not use a basic operator to do a basic operation? |
|||||
|