Bit Spreading Interleave Bits with Zeros

Code

#include <stdio.h>
#include <stdint.h>

uint16_t spread_bits(uint8_t x) {
    // Your logic here
    uint16_t res = x;
    res = (res | (res << 4)) & 0x0F0F; // 0000111100001111
    res = (res | (res << 2)) & 0x3333; // 0011001100110011
    res = (res | (res << 1)) & 0x5555; // 0101010101010101
    return res;
    // |=makes add to left shifted bits

}

int main() {
    uint8_t val;
    scanf("%hhu", &val);

    uint16_t result = spread_bits(val);
    printf("%u", result);
    return 0;
}

Solving Approach

 

 

 

Upvote
Downvote
Loading...

Input

202

Expected Output

20548