Divisiblity of 5 without using % and / operator

后端 未结 9 2252
隐瞒了意图╮
隐瞒了意图╮ 2020-12-02 02:14

how to check whether a number is divisible by 5 or not without using % and / operator. I want a quickest algorithm for this problem.

相关标签:
9条回答
  • 2020-12-02 02:45

    In decimal, a number is divisible by 3 or 9 if the sum of the digits is divisible by 3 or 9

    The same applies to any divisors of b - 1 in base b. For example we can sum the digits in base 16 and take modulo 3, 5 or 15 to get the number modulo 3, 5 or 15. See How to find x mod 15 without using any Arithmetic Operations?

    In fact we can check divisibility by 5 in any base 24k like 16, 256, 4096...

    Using that property we have the following solution

    unsigned mod5(unsigned x) {
        unsigned mod = 0;
        while (x) {
            mod += x & 0x0F;
            x >>= 4;
        }
        while (mod >= 15)
        {
            if (mod == 15) return 0;
            mod = (mod >> 4) + (mod & 0x0F);
        }
        return mod;   
    }
    

    Or it can be further optimized like this using a bit lookup table in the last step

    unsigned isDivisibleBy5(unsigned x) {
        x = (x >> 16) + (x & 0xffff);
        x = (x >> 8)  + (x & 0x00ff);
        x = (x >> 4)  + (x & 0x000f);
        return !!((0x1084210842108421ULL >> x) & 1);
    }
    
    0 讨论(0)
  • 2020-12-02 02:48

    There are two reasons I can see for wanting such an algorithm: (1) homework, or (2) writing efficient code for a microcontroller which does not have efficient division instructions. Assuming your reason is the second, but allowing for the possibility that it might be the first, I won't give you a full solution, but will suggest that if you divide your number into chunks that are a multiple of four bits each, the sum of all those chunks will be divisible by five only if the original number was; note that when performing such computation you must either avoid overflows or else add to your result the number of overflows that have occurred. I don't know any efficient way to do the latter in C, but in many machine languages it is easy. As a simple example, on the 8051 if one had a 32-bit integer, one could so something like:

        mov a,Number   ; Byte 0
        add a,Number+1 ; Byte 1
        adc a,Number+2 ; Byte 2, plus carry from last add
        adc a,Number+3 ; Byte 3, plus carry from last add
        adc a,#0       ; Add in carry, if any (might overflow)
        adc a,#0       ; Add in carry, if any (can't overflow)
    

    Note that in the machine code, adding the carries back into the number is much faster than performing 16-bit math would be.

    Once the value has been reduced to the range 0-255, one could add the upper four bits to the lower 4 bits to get a value in the range 0 to 30. One could either test for the seven such values that are multiples of five, or work to reduce the number of possible values further [e.g. if the value is at least 15, subtract 15; if at least 10, subtract 10; if 5, subtract five; if zero, it's a multiple of five].

    0 讨论(0)
  • 2020-12-02 02:52

    Add all the bytes and check (by table look-up) if the sum is divisible by 5.

    0 讨论(0)
  • 2020-12-02 02:52

    Keep subtracting by multiples of 5 like 50, 500,100, etc. Start with big numbers. If the result goes in negative then subtract with a smaller number number until you reach 0. Otherwise the number is not divisible.

    0 讨论(0)
  • 2020-12-02 02:54

    Let's represent the number in base 2. We have:

    abcdefgh*101 = ABCDEFGHIJ
    

    or

    +abcdefgh00
    +  abcdefgh
     ----------
     ABCDEFGHIJ
    

    We are given ABCDEFGHIJ and want to find abcdefgh.

    If you alternately - and + ABCDEFGH with its successive rightshift-by-2, you will get...

    +  ABCDEFGH
    -    ABCDEF
    +      ABCD
    -        AB
    -----------
    +  abcdefgh
    +    abcdef
    -    abcdef
    -      abcd
    +      abcd
    +        ab
    -        ab
    -----------
       abcdefgh
    

    The answer!

    0 讨论(0)
  • 2020-12-02 02:54

    Typecast or convert to a string, then see if the final character is a 5 or 0.

    0 讨论(0)
提交回复
热议问题