Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Implementation of Sparse Table for min()
function.
More...
#include <array>
#include <cassert>
#include <iostream>
Classes | |
struct | data_structures::sparse_table::Sparse_table |
Namespaces | |
namespace | data_structures |
for IO operations | |
namespace | sparse_table |
Functions for Implementation of Sparse Table | |
Functions | |
static void | test () |
Self-test implementations. | |
int | main (int argc, char *argv[]) |
Main function. | |
Variables | |
constexpr uint32_t | data_structures::sparse_table::N = 12345 |
A struct to represent sparse table for min() as their invariant function, for the given array A . The answer to queries are stored in the array ST. | |
constexpr uint8_t | data_structures::sparse_table::M = 14 |
ceil(log2(N)). | |
Implementation of Sparse Table for min()
function.
Sparse Table is a data structure, that allows answering range queries. It can answer most range queries in O(logn), but its true power is answering range minimum queries (or equivalent range maximum queries). For those queries it can compute the answer in O(1) time. The only drawback of this data structure is, that it can only be used on immutable arrays. This means, that the array cannot be changed between two queries.
If any element in the array changes, the complete data structure has to be recomputed.
int main | ( | int | argc, |
char * | argv[] ) |
Main function.
argc | commandline argument count (ignored) |
argv | commandline array of arguments (ignored) |
|
static |
Self-test implementations.
< array on which RMQ will be performed.
< size of self test's array
< declaring sparse tree
< copying array to the struct
< passing the array's size to the struct
< precomputing sparse tree
< as 1 is smallest from 1..9
< as 2 is smallest from 2..6
< as 3 is smallest from 3..8
|
constexpr |
A struct to represent sparse table for min()
as their invariant function, for the given array A
. The answer to queries are stored in the array ST.
the maximum size of the array.