Package com.googlecode.gaal.suffix.algorithm.impl

Examples of com.googlecode.gaal.suffix.algorithm.impl.SkewSuffixTableBuilder


import com.googlecode.gaal.suffix.algorithm.impl.SkewSuffixTableBuilder;

public class EnhancedSuffixArrayImpl extends EnhancedSuffixArrayBase {

    public EnhancedSuffixArrayImpl(IntSequence sequence, int alphabetSize) {
        super(sequence, alphabetSize, new SkewSuffixTableBuilder(), new KasaiLcpTableBuilder(),
                new KimChildTableBuilder());
    }
View Full Code Here


import com.googlecode.gaal.suffix.algorithm.impl.SkewSuffixTableBuilder;

public class LinearizedSuffixTreeImpl extends LinearizedSuffixTreeBase {

    public LinearizedSuffixTreeImpl(IntSequence sequence, int alphabetSize) {
        super(sequence, alphabetSize, new SkewSuffixTableBuilder(), new KasaiLcpTableBuilder(),
                new KimChildTableBuilder());
    }
View Full Code Here

TOP

Related Classes of com.googlecode.gaal.suffix.algorithm.impl.SkewSuffixTableBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.