汉明码(7,4) - C ++实现失败

时间:2013-02-11 20:01:01

标签: c++ hamming-code

#include <iostream>
#include <string>

using namespace std;

int get_bin_representation(char x){

  if(x == '1'){
    return 1;
  }
  else if(x == '0'){
    return 0;
  }
}
int gen_hamming_code(string token){

  int bits[4];
  int temp(0);

  for(int k=0; k<4; k++){
    bits[k] = get_bin_representation(token.at(k));
  }

  int ham_code[7];

  ham_code[0] = bits[0] + bits[1] + bits[3];
  ham_code[1] = bits[0] + bits[2] + bits[3];
  ham_code[2] = bits[0];
  ham_code[3] = bits[1] + bits[2] + bits[3];
  ham_code[4] = bits[1];
  ham_code[5] = bits[2];
  ham_code[6] = bits[3];

  for(int h=0; h<7; h++){
    temp = ham_code[h];
    ham_code[h] = temp%2;
    temp = 0;
  }

  for(int e=0; e<7; e++){
    cout << ham_code[e];
  }
  cout << endl;

  return 0;
}
int main(){

  string usr_input;
  string msg;
  int index(0);

  cout << "Hamming Code Program" << endl;

  while(true){

    cout << endl << ": ";
    getline(cin, usr_input);

    if(usr_input.find("gen") != std::string::npos){
        for(int i=0; i<usr_input.length(); i++){
            if(usr_input.at(i) == ' '){
                index = i;
            }
        }

        for(int j=index; j<usr_input.length(); j++){
            msg+=usr_input.at(j);
        }

        cout << "Hamming code (7,4): ";
        gen_hamming_code(msg);
    }
  }
}

我使用了维基百科提供的线性代数定义('汉明码(7,4)')。在程序的几个点上,我打印了变量内容,但修复了一个问题导致另一个问题。为了验证输出是否正确,我将其与维基百科上提供的示例进行了比较,并将结果与​​online calculator生成。

更新:问题已解决。我使用了here提供的算法(没有AMP)。

1 个答案:

答案 0 :(得分:2)

嗯,这是错误的:

ham_code[0] = bits[0] + bits[1] + bits[3];

使用GF(2)算法定义汉明码。 GF(2)中的加法是C ++ xor运算符(^)。使用正确的运算符,您可以取消稍后的%2循环。

你还将奇偶校验位与明文混合在一起,这是我学习它时从未做过的事情。同样,在线模拟器使用简单的顺序(明文,奇偶校验)而不进行交错。