We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Most of case, compression is the same befor changed.
`//// Encoder.java //// line 165 - 167 is changed to below. for (int i=symbolIndex;i>0;)nodes[--i].frequency+=symbolCount[i];
//// CanonicalHuffmanTree.java //// line 40 is changed to below depths[lastOccurrence = i]=0;
line 50 is changed to below newFreqs[index][depths[index]++] = frequency;
line 52 - 75 is removed`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Most of case, compression is the same befor changed.
`//// Encoder.java ////
line 165 - 167 is changed to below.
for (int i=symbolIndex;i>0;)nodes[--i].frequency+=symbolCount[i];
//// CanonicalHuffmanTree.java ////
line 40 is changed to below
depths[lastOccurrence = i]=0;
line 50 is changed to below
newFreqs[index][depths[index]++] = frequency;
line 52 - 75 is removed`
The text was updated successfully, but these errors were encountered: