光纤通信实验二C语言实现HDB3编码
Posted 胡毛毛_三月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了光纤通信实验二C语言实现HDB3编码相关的知识,希望对你有一定的参考价值。
代码:
#include <stdio.h>
#define maxSize 1000
// 文件输出
int output(int bin)
FILE *fp;
char enter = '\\n';
fp = fopen("OUTHDB3YUANMA.txt","a");
if(fp == NULL)
printf("数据错误!");
return 0;
fprintf(fp,"%d",bin);
fclose(fp);
return 0;
/**
* @description: Encode the source code as HDB3 code.
* @param: hdb3 is a pointer to HDB3 code.
* source is a pointer to source code.
* len is sequence length.
* @return: none
*/
void HDB3_Encoding(char arr[], int len)
unsigned int i = 0;
unsigned int cnt_0 = 0; //记录连续0的个数
char last_b = 0; //记录上一个信码(含B及B')极性,初始化为0保证第一个信码极性为+1
char last_v = -1; //记录上一个V码极性,初始化为-1保证第一个V码极性为+1
int a[maxSize];
for(i ; i < len; i++)
if(arr[i]=='0')
//源码为0
cnt_0++;
if(cnt_0 >= 4)
//连续0的个数大于4
cnt_0 = 0;
a[i] = (last_v&0x80)?1:-1;//保证V码极性交替变化
last_v = a[i];//更新last_v
if(last_v != last_b)
//如果当前V码与前一个信码极性不同,则增加同极性的补信码
a[i-3] = last_v;
last_b = last_v;//更新last_b
else
a[i] = 0;
else
//源码为1
cnt_0 = 0;
if(!last_b)
//如果是第一个为1的源码,则对应HDB3码的信码极性为+1
a[i] = 1;
last_b = 1;
else
a[i] = (last_b&0x80)?1:-1;//保证信码极性交替变化
last_b = a[i];//更新last_b
output(a[i]);
printf("\\n");
// 文件读取
void input()
FILE *fp;
char arr[maxSize];
int a[maxSize];
int index = 0;
int flag = 0;
int i = 0;
int temp = 0;
fp = fopen("HDB3YUANMA.txt", "r");
if (fp == NULL)
printf("数据错误!");
return;
while (1)
flag = fscanf(fp, "%c", &arr[index]);
printf("%c ", arr[index]);
if (flag == EOF)
break;
index++;
if (flag)
printf("HDB3编码后:");
HDB3_Encoding(arr,index);
printf("\\n");
fclose(fp);
int main()
input();
return 0;
HDB3YUANMA.txt: 010111000011010110000011110101110000101110000001011000000000000111010
OUTHDB3YUANMA.txt: 010-11-10001-110-101-1000-101-11-1010-11-10001-101-11000-10010-110001000-10001-11-1010
上一篇:
【光纤通信】实验一、C语言实现AMI编码
更多相关文章:
【通信工程】信息类,电子类,电气工程,自动化,计算机,软件工程,机电,等相关专业 全套学习指导
答疑资料qq群:1007576722
以上是关于光纤通信实验二C语言实现HDB3编码的主要内容,如果未能解决你的问题,请参考以下文章