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

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


            embeddingSuffixTable[index] = entry.getValue() - lcp;
            index++;
        }
        if (embeddedSuffixTable.length > 0) {
            int alphabetSize = symbolTable.alphabetSize();
            int[] lcpTable = new NaiveLcpTableBuilder().buildLcpTable(embeddedSuffixTable, sequence);
            int[] childTable = new KimChildTableBuilder().buildChildTable(lcpTable);
            EnhancedSuffixArray esa = new EnhancedSuffixArrayBase(sequence, alphabetSize, embeddedSuffixTable,
                    lcpTable, childTable);
            int[] extendedLcpTable = new ExtendedLcpTableBuilderImpl().buildExtendedLcpTable(esa);
            childTable = new KimChildTableBuilder().buildChildTable(extendedLcpTable);
View Full Code Here

TOP

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

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.