| 4 | import java.util.Comparator; |
| 5 | |
| 6 | class HuffmanNode { |
| 7 | int item; |
| 8 | char c; |
| 9 | HuffmanNode left; |
| 10 | HuffmanNode right; |
| 11 | } |
| 12 | |
| 13 | // For comparing the nodes |
| 14 | class ImplementComparator implements Comparator<HuffmanNode> { |
nothing calls this directly
no outgoing calls
no test coverage detected