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