- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解码霍夫曼代码。
我有一个字符字典,其中有一个 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());
}
}
这就是我在控制台中看到的内容:
因此,如果有人可以帮助我改进我的方法,这样我就可以得到一个 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/
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我这样定义了一个二叉树: struct btree { int x; btree* left_child = nullptr; btree* right_child = nul
我有这个霍夫曼代码,旨在返回数组中每个字母的霍夫曼代码并按字母顺序打印它们。问题是它不生成任何输出,而是继续处理,直到我手动退出它。谁能帮我找出错误吗?我认为我的代码是正确的,但我不知道无限循环从何而
动机 想象一下一个哈夫曼压缩文件被部分下载,就像在p2p软件中一样,所以我们首先为整个文件分配磁盘空间,然后开始随机下载文件块。其中一个哈夫曼密码(但我们不知道是哪一个)是一个结束密码,所以如果这个密
以下 block 由霍夫曼 block 标记嵌套 -HUFF---------------------------------------------------------------------0
我是一名优秀的程序员,十分优秀!