1

我正在编写一个模拟通过网络传输字符的程序。我写了以下函数:

int getCharBit(char c, int bitNum){
    return (c & (1 <<bitNum)) >> bitNum; 
}


// returns the ith bit of the character c
int getShortBit(short num, int bitNum)
{
    return (num & (1 <<bitNum)) >> bitNum;
}


// sets bit i in num to 1
int setShortBit(int bitNum, short *num){
   return  num | (1 << bitNum);
}


// count the number of bits in the short and returns the number of bits

/* input:
   num - an integer

Output:
the number of bits in num

*/

int countBits(short num)

{

   int sum=0;
   int i;
   for(i = num; i != 0; i = i >> 1){
      sum += i & 1;
   }      
   return sum;

}

我还编写了一个函数,用于计算短整数 num 和掩码中的个数:

int countOnes(short int num, short int pMask){
   short tempBit = num & pMask;
   sum = 0;
   while(tempBit > 0){
      if((tempBit & 1) == 1){
         sum ++;
      }
      tempBit >> 1;
   }
   return sum;
}

和一个设置奇偶校验位的函数:

int setParityBits(short *num)
    // set parity bit p1 using mask P1_MASK by
    // get the number of bits in *num and the mask P1_MASK
    int numOnes = countOnes(num, P1_MASK);
    // if the number of bits is odd then set the corresponding parity bit to 1  (even parity)
if ((numOnes % 2) != 0){
   setShortBit(1, num);
}
    // do the same for parity bits in positions 2,4,8

int numOnes2 = countOnes(num, P2_MASK);
if ((numOnes2 % 2) != 0){
   setShortBit(2, num);
}
int numOnes4 = countOnes(num, P4_MASK);
if ((numOnes4 % 2) != 0){
   setShortBit(4, num);
}
int numOnes8 = countOnes(num, P8_MASK);
if ((numOnes8 % 2) != 0){
   setShortBit(8, num);
}

我还获得了一些应该读取输入并传输它的功能。问题在于我编写的函数之一。

例如,如果我运行程序并输入 hello 作为输入,我应该得到 3220 3160 3264 3264 7420 作为输出,但我得到 0 0 0 0 0。

我似乎无法找到我做错了什么,有人可以帮助我吗?

4

0 回答 0