SDSL: Succinct Data Structure Library
A C++ template library for succinct data structures
|
lcp_kurtz.hpp contains an implementation of a (compressed) lcp array proposed by Stefan Kurtz. More...
#include "lcp.hpp"
#include "int_vector.hpp"
#include "algorithms.hpp"
#include "iterators.hpp"
#include "bitmagic.hpp"
#include <iostream>
#include <algorithm>
#include <cassert>
#include <cstring>
#include <iomanip>
#include <iterator>
#include <vector>
#include <utility>
Go to the source code of this file.
Classes | |
class | sdsl::lcp_kurtz< width > |
A class for the compressed version of lcp information of an suffix array proposed by Stefan Kurtz in the paper "Reducing the Space Requirement of Suffix Trees". More... | |
class | sdsl::lcp_kurtz< width >::type< Cst > |
Namespaces | |
namespace | sdsl |
Namespace for the succinct data structure library. |
lcp_kurtz.hpp contains an implementation of a (compressed) lcp array proposed by Stefan Kurtz.