|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectit.unimi.dsi.compression.TreeDecoder
public final class TreeDecoder
A decoder that follows 0/1 labelled paths in a tree.
Additional, the buildCodes()
method returns a vector
of codewords corresponding to the paths of an instance of this class. Conversely,
the codeword-based constructor builds
a tree out of the codewords generated by root-to-leaf paths.
Nested Class Summary | |
---|---|
static class |
TreeDecoder.LeafNode
A leaf node of the decoding tree. |
static class |
TreeDecoder.Node
A internal node of the decoding tree. |
Constructor Summary | |
---|---|
TreeDecoder(BitVector[] lexSortedCodeWord,
int[] symbol)
Creates a new codeword-based decoder starting from a set of complete, lexicographically ordered codewords. |
|
TreeDecoder(TreeDecoder.Node root,
int n)
Creates a new codeword-based decoder using the given tree. |
Method Summary | |
---|---|
BitVector[] |
buildCodes()
Generate the codewords corresponding to this tree decoder. |
int |
decode(BooleanIterator iterator)
Decodes the next symbol from the given boolean iterator. |
int |
decode(InputBitStream ibs)
Decodes the next symbol from the given input bit stream. |
LongArrayBitVector |
succinctRepresentation()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TreeDecoder(TreeDecoder.Node root, int n)
TreeDecoder.Node
and all leaf nodes are instances of TreeDecoder.LeafNode
.
root
- the root of a decoding tree.n
- the number of leaves (symbols).public TreeDecoder(BitVector[] lexSortedCodeWord, int[] symbol)
lexSortedCodeWord
- a vector of lexically sorted codeWords.symbol
- a mapping from codewords to symbols.Method Detail |
---|
public int decode(BooleanIterator iterator)
Decoder
Note that InputBitStream
implements BooleanIterator
.
decode
in interface Decoder
iterator
- a boolean iterator.
i
public int decode(InputBitStream ibs) throws IOException
Decoder
Note that InputBitStream
implements BooleanIterator
.
decode
in interface Decoder
ibs
- an input bit stream.
ibs
.
IOException
public BitVector[] buildCodes()
public LongArrayBitVector succinctRepresentation()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |