从文件解码霍夫曼树
Decoding a Huffman Tree from a File
我正在尝试解码霍夫曼码。
我得到了一个字符字典,它有一个 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 作为键、以二进制值作为值的哈希图。
然后我把它保存在一个节点数组中,这样我就可以很容易地拿走它们,问题是这样的:
当我尝试使用字典将二进制消息转换为 char 时,我收到如下消息:
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);
}
这是class 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
即 space 字符
依此类推,直到原始字符串中没有任何内容为止。
修改后的代码如下所示:
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
我正在尝试解码霍夫曼码。
我得到了一个字符字典,它有一个 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 作为键、以二进制值作为值的哈希图。
然后我把它保存在一个节点数组中,这样我就可以很容易地拿走它们,问题是这样的:
当我尝试使用字典将二进制消息转换为 char 时,我收到如下消息:
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);
}
这是class 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
即 space 字符
依此类推,直到原始字符串中没有任何内容为止。
修改后的代码如下所示:
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