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

I've tried searching with Google and reading Wikipedia, but none of them mentions if there is a command to pad a bit sequence with ones on the left/right. For instance, 01000 would become 010001111. I can do this with bit masking but my techniques are rather slow. So what's a standard way of doing this in C?

share|improve this question
1  
Please work on your accept rate. What exactly are the criteria which add the three ones to the right of the original one? For example, do you want there to be no zeros after the right-most one in the input value? Where on earth did the first one in the result come from? – Jonathan Leffler Oct 5 '12 at 6:17

3 Answers

up vote 1 down vote accepted
#include <limits.h>
#include <assert.h>
#include <stdio.h>

unsigned pad(unsigned pattern, unsigned patternLen,
             unsigned leftBit, unsigned leftBitCnt,
             unsigned rightBit, unsigned rightBitCnt)
{
  unsigned r;
  assert(leftBitCnt < sizeof(unsigned) * CHAR_BIT);
  assert(rightBitCnt < sizeof(unsigned) * CHAR_BIT);
  assert(patternLen < sizeof(unsigned) * CHAR_BIT);
  assert(leftBitCnt + patternLen + rightBitCnt <= sizeof(unsigned) * CHAR_BIT);

  r = (leftBit << leftBitCnt) - leftBit;
  r <<= patternLen;
  r |= pattern;
  r <<= rightBitCnt;
  r |= (rightBit << rightBitCnt) - rightBit;

  return r;
}

void printBin(unsigned x)
{
  unsigned i;
  for (i = 0; i < sizeof(unsigned) * CHAR_BIT; i++)
    printf("%u", (x >> (sizeof(unsigned) * CHAR_BIT - 1 - i)) & 1);
  printf("\n");
}

int main(void)
{
  printBin(pad(0x0F0, 12, 0, 2, 0, 2));
  printBin(pad(0x0F0, 12, 0, 2, 1, 2));
  printBin(pad(0x0F0, 12, 1, 2, 0, 2));
  printBin(pad(0x0F0, 12, 1, 2, 1, 2));
  return 0;
}

Output (ideone):

00000000000000000000001111000000
00000000000000000000001111000011
00000000000000001100001111000000
00000000000000001100001111000011
share|improve this answer

To pad the value i with n 1 bits to the right (least significant bits), you can calculate:

(i + 1 << n) - 1
share|improve this answer

For both, I will use x for the original number and n for number of bits to pad.

Right (least-significant) padding:

I believe the fewest operations you can get away with is:

(x + 1 << n) - 1

How did I get there? Start with shifting x over (x << n). Now its where we want it, but padded with 0s. We can get the right number of 1s with (1 << n) - 1. Now, normally we would bitwise-or them together. However, since all of the 1s in one of them lines up with a 0 in the other, we can also add them, which let's us simplify: (x << n) + (1 << n) - 1 = (x + 1 << n) - 1. Keep in mind that +/- occurs before <</>> operations.

Left (most-significant padding):

x | -1 << BIT_WIDTH - n

First, we use -1 because it is all ones. I'm assuming this is signed; if not, use MAX_INT, or the relative constant for the type of x. Then, simply shift all of the 1s over BIT_WIDTH - n slots, which leaves us with n 1s in the correct place. Here, we should bitwise-or with x, because x could potentially have 1s in a position that is supposed to be padded. Also, because we can't simplify it even if we use addition.

share|improve this answer

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.