Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to solve it myself but I could not get any clue.

Please help me to solve this.

share|improve this question
If You are allowing + and - there is no sense of preventing /, * and % of using. one can drive function. Or + and - should also be banned.. :) – Pervez Alam Aug 3 '12 at 9:10

17 Answers

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.

share|improve this answer

Using the mathematical relation:

1/3 == Sum[1/2^(2n), {n, 1, Infinity}]

We have

int div3 (int x) {
   int64_t blown_up_x = x;
   for (int power = 1; power < 32; power += 2)
      blown_up_x += ((int64_t)x) << power;
   return (int)(blown_up_x >> 33);
}

If you can only use 32-bit integers,

int div3 (int x) {
     int two_third = 0, four_third = 0;
     for (int power = 0; power < 31; power += 2) {
        four_third += x >> power;
        two_third += x >> (power + 1);
     }
     return (four_third - two_third) >> 2;
}

The 4/3 - 2/3 treatment is used because x >> 1 is floor(x/2) instead of round(x/2).

share|improve this answer
If this works then it is a really cool solution! – kigurai Jan 15 '10 at 12:46
The "64-bit" version does work. The "32-bit" version will at most be off by 1 or -1. – KennyTM Jan 15 '10 at 14:57
this is just binary representation of 1/3 – Luka Rahne Jan 16 '10 at 11:18

x/3 = e^(ln(x) - ln(3))

share|improve this answer

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:

int divideBy3(int n)
{
  return (n * 1431655766) >> 32;
}

See Hacker's Delight Magic number calculator.

share|improve this answer
Multiply is not allowed – Gaim Jan 15 '10 at 11:31
Read the title: "without using /, % and *". – KennyTM Jan 15 '10 at 11:34
@Gaim: yes I just misread the title. I was editing my answer while you were writing your comment – Gregory Pakosz Jan 15 '10 at 11:34
1  
I pity the fool that has to pick that up for maintenance... :) – Paolo Jan 15 '10 at 11:35
4  
I like this answer. The multiplication can be rewritten as a for(int i = 0; i < 1431655766) n += n; Than the answer is in line with the requirements. – Fortega Jan 15 '10 at 12:40
show 5 more comments

Here's a solution implemented in C++:

#include <iostream>

int letUserEnterANumber()
{
    int numberEnteredByUser;
    std::cin >> numberEnteredByUser;
    return numberEnteredByUser;
}

int divideByThree(int x)
{
    std::cout << "What is " << x << " divided by 3?" << std::endl;
    int answer = 0;
    while ( answer + answer + answer != x )
    {
        answer = letUserEnterANumber();
    }
}

;-)

share|improve this answer
if(number<0){ // Edited after comments
number = -(number);
}
quotient = 0;
while (number-3 >= 0){ //Edited after comments..
number = number-3;
quotient++;
}//after loop exits value in number will give you reminder

EDIT: Tested and working perfectly fine :(

Hope this helped. :-)

share|improve this answer
Does not handle negative numbers – kigurai Jan 15 '10 at 11:33
It will be better if while condition will be number >= 3 because you can get this: 5:3=2 – Gaim Jan 15 '10 at 11:34
thanks for the comments.. :-) – Richie Jan 15 '10 at 11:48
Does still not work. It will return one too much. Try number=3, you will notice how it will return quotient=2 instead of quotient = 1 – kigurai Jan 15 '10 at 11:56
I don't think 5:3=2 ... 5:3=1,666666... – Fortega Jan 15 '10 at 12:37
show 3 more comments

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 ...

share|improve this answer
int divideby3(int n)
{
    int x=0;
    if(n<3) { return 0; }
    while(n>=3)
    {
        n=n-3;
        x++;
    }
    return x;
}
share|improve this answer

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

share|improve this answer

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.

share|improve this answer
I should have added, that if you want you could implement a circuit that only divides by 3, but why not implement a circuit for general division. – High Performance Mark Jan 15 '10 at 11:54
well divide by a constant is going to use less gates - often an important optimization in hardware design (guess it depends on what class this is for) – jk. Jan 15 '10 at 12:21

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.

 x = <a number>  
 total = x
 intpart = 0
 fracpart = 0

 % Find the integer part
 while total >= 3
    total = total - 3
    intpart = intpart + 1

 % Fraction is what remains
 fracpart = total


 print "%d / 3 = %d + %d/3" % (x, intpart, fracpart)

Note that this will not work for negative numbers. To fix that you need to modify the algorithm:

  total = abs(x)
  is_neg = abs(x) != x

  ....

  if is_neg
      print "%d / 3 = -(%d + %d/3)" % (x, intpart, fracpart)
share|improve this answer

for positive integer division

result = 0
while (result + result + result < input)
 result +=1
return result
share|improve this answer
Only integer division. Does not handle negative numbers. If input is is large a lot of unneccesary additions are made. – kigurai Jan 15 '10 at 11:35
yep but it does actually work with those constraints in contrast to another similar answer – jk. Jan 15 '10 at 11:41
Yes, it is much better in that regard :) – kigurai Jan 15 '10 at 11:46
unsigned int  div3(unsigned int m) {
   unsigned long long n = m;
   n += n << 2;
   n += n << 4;
   n += n << 8;
   n += n << 16;
   return (n+m) >> 32;
}
share|improve this answer

Convert 1/3 into binary

so 1/3=0.01010101010101010101010101

and then just "multiply" whit this number using shifts and sum

share|improve this answer
long divByThree(int x)
{    
  char buf[100];
  itoa(x, buf, 3); 
  buf[ strlen(buf) - 1] = 0; 
  char* tmp; 
  long res = strtol(buf, &tmp, 3);

  return res;
}
share|improve this answer

There is a solution posted on http://bbs.chinaunix.net/forum.php?mod=viewthread&tid=3776384&page=1&extra=#pid22323016

int DividedBy3(int A) {
    int p = 0;
    for (int i = 2; i <= 32; i += 2)
        p += A << i;
    return (-p);
}

Please say something about that, thanks:)

share|improve this answer
2  
This doesn't really add anything to already posted answers... – alestanis Oct 21 '12 at 15:41

Slow and naive, but it should work, if an exact divisor exists. Addition is allowed, right?

for number from 1 to input
  if number == input+input+input
    return number

Extending it for fractional divisors is left as an exercise to the reader. Basically test for +1 and +2 I think...

share|improve this answer
no, this always returns input (mult instead of divide and wrong loop range) and assumes input > 0 – jk. Jan 15 '10 at 11:31
Uhm, this doesn't do division at all and will never return anything. "number" can be at most "input", so "number == input + input + input" will never be true. – kigurai Jan 15 '10 at 11:38
2  
you should replace the 'number == input+input+input' by 'input == number+number+number' – Fortega Jan 15 '10 at 12:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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