Package com.googlecode.gaal.suffix.impl

Source Code of com.googlecode.gaal.suffix.impl.EnhancedSuffixArrayImpl

package com.googlecode.gaal.suffix.impl;

import com.googlecode.gaal.data.api.IntSequence;
import com.googlecode.gaal.suffix.algorithm.impl.KasaiLcpTableBuilder;
import com.googlecode.gaal.suffix.algorithm.impl.KimChildTableBuilder;
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());
    }

}
TOP

Related Classes of com.googlecode.gaal.suffix.impl.EnhancedSuffixArrayImpl

TOP
Copyright © 2018 www.massapi.com. 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.