SDSL: Succinct Data Structure Library
A C++ template library for succinct data structures
 All Classes Namespaces Files Functions Variables Typedefs Friends
Classes | Namespaces
sdsl/include/sdsl/rmq_support_sparse_table.hpp File Reference

rmq_support_sparse_table.hpp contains the class rmq_support_sparse_table which supports range minimum or range maximum queries on a random access container in constant time and $\Order{n\log^2 n} bits$ space. See paper LCP revisted of Bender and Farach. More...

#include "rmq_support.hpp"
#include "int_vector.hpp"
#include "bitmagic.hpp"
#include <ostream>

Go to the source code of this file.

Classes

struct  sdsl::range_maximum_support_sparse_table< RandomAccessContainer >
class  sdsl::rmq_support_sparse_table< RandomAccessContainer, Minimum >
 A class to support range minimum or range maximum queries on a random access container. More...

Namespaces

namespace  sdsl
 Namespace for the succinct data structure library.

Detailed Description

rmq_support_sparse_table.hpp contains the class rmq_support_sparse_table which supports range minimum or range maximum queries on a random access container in constant time and $\Order{n\log^2 n} bits$ space. See paper LCP revisted of Bender and Farach.

Author:
Simon Gog