我一直在研究这个霍夫曼树生成器:
// variable al is an array list that holds all the different characters and their frequencies
// variable r is a Frequency which is supposed to be the roots for all the leaves which holds a null string and the frequencies of the combined nodes removed from the priority queue
public Frequency buildTree(ArrayList<Frequency> al)
{
Frequency r = al.get(0);
PriorityQueue<Frequency> pq = new PriorityQueue<Frequency>();
for(int i = 0; i < al.size(); i++)
{
pq.add(al.get(i));
}
/*while(pq.size() > 0)
{
System.out.println(pq.remove().getString());
}*/
for(int i = 0; i < al.size() - 1; i++)
{
Frequency p = pq.remove();
Frequency q = pq.remove();
int temp = p.getFreq() + q.getFreq();
r = new Frequency(null, temp);
r.left = p;
r.right = q;
pq.add(r); // put in the correct place in the priority queue
}
pq.remove(); // leave the priority queue empty
return(r); // this is the root of the tree built
}
代码试图做的英语是
将所有字符及其频率添加到优先级队列中,从最低频率到最高频率。接下来为 ArrayList al 的大小(包含所有字符)将前两个出列然后设置一个新根以具有左右子节点,它们是出列的 2 个节点,然后插入具有 2 个出列的组合频率的新根项目进入优先队列。这就是方法应该做的所有事情。
这种方法应该构建霍夫曼树,但它构建不正确我已经按照代码手动构建了树,但我在纸上得到的与程序不同!由不同程序生成的正确答案与我的解决方案不同。输入数据(字母和频率)是:
a 6
b 5
space 5
c 4
d 3
e 2
f 1
至于我从中读取的文本无关紧要,因为频率已经在这里了。我需要做的 2 就是从这些频率构建树。