CRC是一种常用的错误侦测编码,例如,字符串"test"的CRC12余数计算结果为:
CRC12 remainder of str "test" is 679
The binary string is:
01110100 01100101 01110011 01110100 011001111001
计算CRC12的C语言代码如下:
/**
CRC12
*/
#include <cstring>
#include <stdlib.h>
#include <cstdio>
#include <iostream>
#define CHAR_SIZE 8
#define CRC_SIZE 12
using namespace ...