gpt4 book ai didi

java - 从文件中解码霍夫曼树

转载 作者:行者123 更新时间:2023-12-02 02:03:20 24 4
gpt4 key购买 nike

我正在尝试解码霍夫曼代码。

我有一个字符字典,其中有一个 int 值和一个二进制值以及单词的二进制值,它看起来像这样:

10,000;121,001;13,010;33,011;100,1000;32,1001;104,1010;101,1011;111,1100;108,1101;119,1110;114,1111;10101011001100111101100111111011000011011010000

...其中像10 - 121 -13 -33之类的数字是字符的int值,它们旁边是char的二进制值,然后是1的序列0 是代码消息。

从文件 txt 中读取它后,我将其拆分为字符串数组,这样我就可以拥有一个以 char 作为键、以二进制值作为值的 HashMap 。

然后我将其保存在节点数组中,以便我可以轻松地获取它们,问题是这样的:

当我尝试使用字典将二进制消息转换为字符时,我收到如下消息:

1!y1y111!y11111!

什么时候应该是这样:

hey world!!

这是我正在使用的方法:

void decompress() throws HuffmanException, IOException {
File file = FilesManager.chooseUncompressedFile();
if (file == null) {
throw new HuffmanException("No file");
}
FileReader read = new FileReader(file);
BufferedReader buff = new BufferedReader(read);
String auxText;
StringBuilder compressFromFile = new StringBuilder();
do {
auxText = buff.readLine();
if (auxText != null) {
compressFromFile.append(auxText);
}
} while (auxText != null);
String[] auxSplit1 = compressFromFile.toString().split(" ");
String rest1 = auxSplit1[1];
String[] auxSplit2 = rest1.split(";");
System.out.println(auxSplit2[2]);
HashMap<Integer, String> map = new HashMap<>();
String[] tomapAux;
for (int i = 0; i < auxSplit2.length - 2; i++) {
tomapAux = auxSplit2[i].split(",");

map.put(Integer.valueOf(tomapAux[0]), tomapAux[1]);
}
ArrayList<CharCode> charCodeArrayList = new ArrayList<>();

map.forEach((k, v) -> charCodeArrayList.add(new CharCode((char) k.intValue(), v)));

charCodeArrayList.sort(new Comparator<CharCode>() {
@Override
public int compare(CharCode o1, CharCode o2) {
return extractInt(o1.getCode()) - extractInt(o2.getCode());
}

int extractInt(String s) {
String num = s.replaceAll("\\D", "");
return num.isEmpty() ? 0 : Integer.parseInt(num);
}
});

for (int i = 0; i < charCodeArrayList.size(); i++) {
System.out.println("Pos " + i + " char: " + charCodeArrayList.get(i).getChr() + " code: " + charCodeArrayList.get(i).getCode());
}
String st = auxSplit2[auxSplit2.length - 1];
System.out.println("before: " + st);
String newChar = String.valueOf(charCodeArrayList.get(0).getChr());
String oldChar = charCodeArrayList.get(0).getCode();
for (CharCode aCharCodeArrayList : charCodeArrayList) {
st = st.replace(oldChar, newChar);
newChar = String.valueOf(aCharCodeArrayList.getChr());
oldChar = aCharCodeArrayList.getCode();
}
System.out.println("after : " +st);

}

这是类CharCode:

public class CharCode implements Comparable<CharCode> {
private char chr;
private String code;

public CharCode(char chr, String code) {
this.chr = chr;
this.code = code;
}

public char getChr() {
return chr;
}

public String getCode() {
return code;
}

@Override
public int compareTo(CharCode cc) {
return ((int) this.chr) - ((int) cc.getChr());
}

}

这就是我在控制台中看到的内容:

and this is what I see in the console

因此,如果有人可以帮助我改进我的方法,这样我就可以得到一个 hey world!! 而不是 1!y1y111!y11111! !!01,那就太好了!

最佳答案

您的程序的问题在于您以错误的方式进行解码:您采用第一个霍夫曼代码,替换其在给定字符串中出现的所有内容,然后对下一个霍夫曼代码执行相同的操作,依此类推。

这不是解码霍夫曼编码字符串的方法。为了解码霍夫曼编码的字符串,您需要检查字符串的前缀是否与某些霍夫曼编码相同。这是通过将字符串的前缀与霍夫曼代码一一比较来完成的。

就您而言:
迭代1:10101011001100111101100111111011000011011010000
我们检查 000 - 不是前缀
我们检查 001 - 不是前缀
我们检查 010 - 不是前缀
我们检查 011 - 不是前缀
我们检查 1000 - 不是前缀
我们检查 1001 - 不是前缀
我们检查 1010 - 找到了一个前缀!它对应于字母h

现在我们从原始字符串中删除这个前缀,所以我们的字符串是
1011001100111101100111111011000011011010000

迭代2:1011001100111101100111111011000011011010000
合适的前缀是1011,它是字母e

迭代3:001100111101100111111011000011011010000
合适的前缀是001,即字母y

迭代4:100111101100111111011000011011010000
合适的前缀是 1001 这是空格字符

依此类推,直到原始字符串中没有任何内容为止。

修改后的代码如下:

while(st.length() > 0)
{

for(int i_map = 0; i_map < charCodeArrayList.size(); i_map++)
{
CharCode cc = charCodeArrayList.get(i_map);

if(st.startsWith(cc.getCode()))
{
System.out.println("found: " + cc.getChr());
st = st.substring(cc.getCode().length());
break;
}//end if

}//end for

}//end while

关于java - 从文件中解码霍夫曼树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51237303/

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