gpt4 book ai didi

c++ - 霍夫曼解码快疯了

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:55:38 24 4
gpt4 key购买 nike

问题是我第一次可以解码一个数据流,但之后它会变成一个无限循环并一遍又一遍地显示相同的值...我使用的是borland C++。解码是通过首先将文本 a 到 z 保存在一个数组中,然后获取输入数据流,然后使用 strcpy 切割数组的内容然后与第一个数组的内容进行比较,如果找到匹配项,则相应的 ASCII被打印出来。

代码:

#include<conio.h>
#include<iostream.h>
#include<string.h>
#include <stdio.h>
#include <stdlib.h>

using namespace std;

int codes[512];
char cut_stream[100];
char input_stream[100];
char decoded_stream[256];
int test,count,cut_start,cut_end,length_of_stream,final,temp_loop_s,temp_loop_e,temp_num,comp_num,send;
void select_num(int select)
{
int output;
output = select + 64;
cout << char(output);
}
void decode()
{
cout<<"\nEnter the data stream ";//<<endl;
cin >> input_stream;
length_of_stream = strlen(input_stream);
//cout<< length_of_stream ; //only for debugging
/********************************************
the code starts here...
********************************************/
count = length_of_stream;

//count -= count;
for(int ini =0; ini<=count ; ini++)
{
for( final=1;final<=count;final++)
{
strncpy(cut_stream, &input_stream[ini], final);
//cut_start = cut_start + 1;
/*********************************************
compare
*********************************************/
temp_num = atoi(cut_stream);
for(int z= 1;z<=26;z++)
{
comp_num = codes[z];
if(comp_num == temp_num)
{
send =z;
select_num(send);
test =1;
comp_num =0;
break;
}
}

if( test ==1)
{
test =0;
ini = final-1; // the increment will be given on the next for loop so it is reduced here
//final =0;
//cout<< "im in test";

break;

}
}

}
cout<< "end";
while(1);
}


//cout<< decoded_stream;
//while(1);

void main()
{
cut_start =0;
cut_end = 1;
cout << "Huffman decoder" << endl;
cout << "Enter the codes for a-z" << endl;
for(int i =1;i<=3;i++)
{
cin >> codes[i];
}
decode();
}

最佳答案

代码中至少有两个主要错误:

codes[] 数组大部分是未初始化的,即使您稍后访问该数组的索引最多为 26 左右,您也只能读取三个数字。

在 strncpy() 复制最大字符数时不会以 null 终止字符串的意义上,对 strncpy() 的调用被破坏;也就是说,当您调用 strncpy() 并将 final 设置为 1 时,strncpy() 会复制一个字符并且不会附加终止 NUL 字符,这将导致 atoi() 失败。

此外,如果您在霍夫曼编码中使用“0”和“1”字符,这无论如何都不起作用,因为数字“01”和“1”都将被 atoi() 解释为 1(一)即使它们是不同的代码。如果这真的是哈夫曼编码,你根本不应该使用 atoi() 和整数,而应该使用二进制或字符串。

霍夫曼解码最好使用树数据结构来完成。查找有关算法的任何标准书籍以供引用。

关于c++ - 霍夫曼解码快疯了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10328261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com