SDSL  3.0.0
Succinct Data Structure Library
construct_lcp.hpp File Reference

construct_lcp.hpp contains a space and time efficient construction method for lcp arrays More...

#include <algorithm>
#include <iostream>
#include <stdexcept>
#include <sdsl/config.hpp>
#include <sdsl/construct_bwt.hpp>
#include <sdsl/construct_isa.hpp>
#include <sdsl/construct_lcp_helper.hpp>
#include <sdsl/int_vector.hpp>
#include <sdsl/rank_support.hpp>
#include <sdsl/select_support.hpp>
#include <sdsl/sfstream.hpp>
#include <sdsl/util.hpp>
#include <sdsl/wt_algorithm.hpp>
#include <sdsl/wt_huff.hpp>

Go to the source code of this file.

Namespaces

 sdsl
 Namespace for the succinct data structure library.
 

Functions

template<uint8_t t_width>
void sdsl::construct_lcp_kasai (cache_config &config)
 Construct the LCP array for text over byte- or integer-alphabet. More...
 
template<uint8_t t_width>
void sdsl::construct_lcp_PHI (cache_config &config)
 Construct the LCP array for text over byte- or integer-alphabet. More...
 
void sdsl::construct_lcp_semi_extern_PHI (cache_config &config)
 Construct the LCP array (only for byte strings) More...
 
void sdsl::construct_lcp_go (cache_config &config)
 Construct the LCP array (only for byte strings) More...
 
void sdsl::construct_lcp_goPHI (cache_config &config)
 Construct the LCP array (only for byte strings) More...
 
template<typename t_wt = wt_huff<bit_vector, rank_support_v<>, select_support_scan<1>, select_support_scan<0>>>
void sdsl::construct_lcp_bwt_based (cache_config &config)
 Construct the LCP array out of the BWT (only for byte strings) More...
 
template<typename t_wt = wt_huff<bit_vector, rank_support_v<>, select_support_scan<1>, select_support_scan<0>>>
void sdsl::construct_lcp_bwt_based2 (cache_config &config)
 Construct the LCP array out of the BWT (only for byte strings) More...
 

Detailed Description

construct_lcp.hpp contains a space and time efficient construction method for lcp arrays

Author
Simon Gog, Timo Beller

Definition in file construct_lcp.hpp.