Uses of Class
cool.scx.common.huffman.HuffmanNode
Packages that use HuffmanNode
-
Uses of HuffmanNode in cool.scx.common.huffman
Fields in cool.scx.common.huffman declared as HuffmanNodeMethods in cool.scx.common.huffman that return HuffmanNodeModifier and TypeMethodDescriptionstatic <T> HuffmanNode<T> HuffmanHelper.buildHuffmanTree(PriorityQueue<HuffmanNode<T>> queue) static <T> HuffmanNode<T> HuffmanHelper.buildHuffmanTreeFromCode(Map<T, IBitArray> huffmanCode) Methods in cool.scx.common.huffman that return types with arguments of type HuffmanNodeModifier and TypeMethodDescriptionstatic <T> PriorityQueue<HuffmanNode<T>> HuffmanHelper.buildPriorityQueue(ICountMap<T> map) Methods in cool.scx.common.huffman with parameters of type HuffmanNodeModifier and TypeMethodDescriptionHuffmanHelper.buildHuffmanCodeTable(HuffmanNode<T> root) static voidHuffmanHelper.buildTreeString(HuffmanNode<?> node, StringBuilder sb, String prefix) Method parameters in cool.scx.common.huffman with type arguments of type HuffmanNodeModifier and TypeMethodDescriptionstatic <T> HuffmanNode<T> HuffmanHelper.buildHuffmanTree(PriorityQueue<HuffmanNode<T>> queue) Constructors in cool.scx.common.huffman with parameters of type HuffmanNodeModifierConstructorDescriptionHuffmanNode(int frequency, HuffmanNode<T> left, HuffmanNode<T> right)