1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
// Copyright (c) 2016, the SDSL Project Authors. All rights reserved.
// Please see the AUTHORS file for details. Use of this source code is governed
// by a BSD license that can be found in the LICENSE file.
/*! \file k2_treap_algorithm.hpp
\brief k2_treap_algorithm.hpp contains k^2-treap algorithms.
\author Simon Gog
*/
#ifndef INCLUDED_SDSL_K2_TREAP_ALGORITHM
#define INCLUDED_SDSL_K2_TREAP_ALGORITHM
#include "sdsl/vectors.hpp"
#include "sdsl/bits.hpp"
#include "sdsl/k2_treap_helper.hpp"
#include <tuple>
#include <algorithm>
#include <iterator>
#include <climits>
#include <vector>
#include <complex>
#include <queue>
#include <array>
//! Namespace for the succinct data structure library.
namespace sdsl {
namespace k2_treap_ns {
//! Check if point x is contained in the rectangle (p1,p2)
/*! \param p Point.
* \param Lower left corner of the rectangle.
* \param Upper right corner of the rectangle.
*/
inline bool contained(const point_type p, const point_type& p1, const point_type& p2)
{
return real(p) >= real(p1) and real(p) <= real(p2) and imag(p) >= imag(p1) and
imag(p) <= imag(p2);
}
//! Check if the rectangle of node v is contained in the rectangle (p1,p2)
template <uint8_t t_k>
bool contained(const point_type& p1, const point_type& p2, const node_type& v)
{
// uint64_t d = (1ULL << v.t)-1;
// uint64_t d = (1ULL << v.t)-1;
uint64_t d = precomp<t_k>::exp(v.t) - 1;
return real(p1) <= real(v.p) and real(p2) >= real(v.p) + d and imag(p1) <= imag(v.p) and
imag(p2) >= imag(v.p) + d;
}
//! Check if rectangle (p1,p2) and the area of node v overlap
template <uint8_t t_k>
bool overlap(const point_type& p1, const point_type& p2, const node_type& v)
{
// uint64_t d = (1ULL << v.t)-1;
uint64_t d = precomp<t_k>::exp(v.t) - 1;
return real(p1) <= real(v.p) + d and real(p2) >= real(v.p) and imag(p1) <= imag(v.p) + d and
imag(p2) >= imag(v.p);
}
template <typename t_k2_treap>
class top_k_iterator {
public:
typedef void (*t_mfptr)();
typedef std::pair<point_type, uint64_t> t_point_val;
private:
typedef k2_treap_ns::node_type node_type;
typedef std::pair<node_type, bool> t_nt_b;
const t_k2_treap* m_treap = nullptr;
std::priority_queue<t_nt_b> m_pq;
t_point_val m_point_val;
point_type m_p1;
point_type m_p2;
bool m_valid = false;
public:
top_k_iterator() = default;
top_k_iterator(const top_k_iterator&) = default;
top_k_iterator(top_k_iterator&&) = default;
top_k_iterator& operator=(const top_k_iterator&) = default;
top_k_iterator& operator=(top_k_iterator&&) = default;
top_k_iterator(const t_k2_treap& treap, point_type p1, point_type p2)
: m_treap(&treap), m_p1(p1), m_p2(p2), m_valid(treap.size() > 0)
{
if (m_treap->size() > 0) {
m_pq.emplace(m_treap->root(), false);
++(*this);
}
}
//! Prefix increment of the iterator
top_k_iterator& operator++()
{
m_valid = false;
while (!m_pq.empty()) {
auto v = std::get<0>(m_pq.top());
auto is_contained = std::get<1>(m_pq.top());
m_pq.pop();
if (is_contained) {
auto nodes = m_treap->children(v);
for (auto node : nodes)
m_pq.emplace(node, true);
m_point_val = t_point_val(v.max_p, v.max_v);
m_valid = true;
break;
} else {
if (contained<t_k2_treap::k>(m_p1, m_p2, v)) {
m_pq.emplace(v, true);
} else if (overlap<t_k2_treap::k>(m_p1, m_p2, v)) {
auto nodes = m_treap->children(v);
for (auto node : nodes)
m_pq.emplace(node, false);
if (contained(v.max_p, m_p1, m_p2)) {
m_point_val = t_point_val(v.max_p, v.max_v);
m_valid = true;
break;
}
}
}
}
return *this;
}
//! Postfix increment of the iterator
top_k_iterator operator++(int)
{
top_k_iterator it = *this;
++(*this);
return it;
}
t_point_val operator*() const { return m_point_val; }
//! Cast to a member function pointer
// Test if there are more elements
// Can be casted to bool but not implicit in an arithmetic experession
// See Alexander C.'s comment on
// http://stackoverflow.com/questions/835590/how-would-stdostringstream-convert-to-bool
operator t_mfptr() const { return (t_mfptr)(m_valid); }
};
template <typename t_k2_treap>
class range_iterator {
public:
typedef void (*t_mfptr)();
typedef std::pair<point_type, uint64_t> t_point_val;
private:
typedef k2_treap_ns::node_type node_type;
typedef std::pair<node_type, bool> t_nt_b;
const t_k2_treap* m_treap = nullptr;
std::priority_queue<t_nt_b> m_pq;
t_point_val m_point_val;
point_type m_p1;
point_type m_p2;
range_type m_r;
bool m_valid = false;
void pq_emplace(node_type v, bool b)
{
if (v.max_v >= real(m_r)) {
m_pq.emplace(v, b);
}
}
public:
range_iterator() = default;
range_iterator(const range_iterator&) = default;
range_iterator(range_iterator&&) = default;
range_iterator& operator=(const range_iterator&) = default;
range_iterator& operator=(range_iterator&&) = default;
range_iterator(const t_k2_treap& treap, point_type p1, point_type p2, range_type range)
: m_treap(&treap), m_p1(p1), m_p2(p2), m_r(range), m_valid(treap.size() > 0)
{
if (m_treap->size() > 0) {
pq_emplace(m_treap->root(), false);
++(*this);
}
}
//! Prefix increment of the iterator
range_iterator& operator++()
{
m_valid = false;
while (!m_pq.empty()) {
auto v = std::get<0>(m_pq.top());
auto is_contained = std::get<1>(m_pq.top());
m_pq.pop();
if (is_contained) {
auto nodes = m_treap->children(v);
for (auto node : nodes)
pq_emplace(node, true);
if (v.max_v <= imag(m_r)) {
m_point_val = t_point_val(v.max_p, v.max_v);
m_valid = true;
break;
}
} else {
if (contained<t_k2_treap::k>(m_p1, m_p2, v)) {
m_pq.emplace(v, true);
} else if (overlap<t_k2_treap::k>(m_p1, m_p2, v)) {
auto nodes = m_treap->children(v);
for (auto node : nodes)
pq_emplace(node, false);
if (contained(v.max_p, m_p1, m_p2) and v.max_v <= imag(m_r)) {
m_point_val = t_point_val(v.max_p, v.max_v);
m_valid = true;
break;
}
}
}
}
return *this;
}
//! Postfix increment of the iterator
range_iterator operator++(int)
{
range_iterator it = *this;
++(*this);
return it;
}
t_point_val operator*() const { return m_point_val; }
//! Cast to a member function pointer
// Test if there are more elements
operator t_mfptr() const { return (t_mfptr)(m_valid); }
};
} // end namespace k2_treap_ns
//! Get iterator for all heaviest points in rectangle (p1,p2) in decreasing order
/*! \param treap k2-treap
* \param p1 Lower left corner of the rectangle
* \param p2 Upper right corner of the rectangle
* \return Iterator to result in decreasing order.
* \pre real(p1) <= real(p2) and imag(p1)<=imag(p2)
*/
template <typename t_k2_treap>
k2_treap_ns::top_k_iterator<t_k2_treap>
top_k(const t_k2_treap& t, k2_treap_ns::point_type p1, k2_treap_ns::point_type p2)
{
return k2_treap_ns::top_k_iterator<t_k2_treap>(t, p1, p2);
}
//! Get iterator for all points in rectangle (p1,p2) with weights in range
/*! \param treap k2-treap
* \param p1 Lower left corner of the rectangle
* \param p2 Upper right corner of the rectangle
* \param range Range {w1,w2}.
* \return Iterator to list of all points in the range.
* \pre real(p1) <= real(p2) and imag(p1)<=imag(p2)
* real(range) <= imag(range)
*/
template <typename t_k2_treap>
k2_treap_ns::range_iterator<t_k2_treap> range_3d(const t_k2_treap& t,
k2_treap_ns::point_type p1,
k2_treap_ns::point_type p2,
k2_treap_ns::range_type range)
{
return k2_treap_ns::range_iterator<t_k2_treap>(t, p1, p2, range);
}
// forward declaration
template <typename t_k2_treap>
uint64_t __count(const t_k2_treap&, typename t_k2_treap::node_type);
// forward declaration
template <typename t_k2_treap>
uint64_t _count(const t_k2_treap&,
k2_treap_ns::point_type,
k2_treap_ns::point_type,
typename t_k2_treap::node_type);
//! Count how many points are in the rectangle (p1,p2)
/*! \param treap k2-treap
* \param p1 Lower left corner of the rectangle.
* \param p2 Upper right corner of the rectangle.
* \return The number of points in rectangle (p1,p2).
* \pre real(p1) <= real(p2) and imag(p1)<=imag(p2)
*/
template <typename t_k2_treap>
uint64_t count(const t_k2_treap& treap, k2_treap_ns::point_type p1, k2_treap_ns::point_type p2)
{
if (treap.size() > 0) {
return _count(treap, p1, p2, treap.root());
}
return 0;
}
template <typename t_k2_treap>
uint64_t _count(const t_k2_treap& treap,
k2_treap_ns::point_type p1,
k2_treap_ns::point_type p2,
typename t_k2_treap::node_type v)
{
using namespace k2_treap_ns;
if (contained<t_k2_treap::k>(p1, p2, v)) {
return __count(treap, v);
} else if (overlap<t_k2_treap::k>(p1, p2, v)) {
uint64_t res = contained(v.max_p, p1, p2);
auto nodes = treap.children(v);
for (auto node : nodes) {
res += _count(treap, p1, p2, node);
}
return res;
}
return 0;
}
template <typename t_k2_treap>
uint64_t __count(const t_k2_treap& treap, typename t_k2_treap::node_type v)
{
uint64_t res = 1; // count the point at the node
auto nodes = treap.children(v);
for (auto node : nodes)
res += __count(treap, node);
return res;
}
// forward declaration
template <uint8_t t_k, typename t_bv, typename t_rank, typename t_max_vec>
class k2_treap;
//! Specialized version of method ,,construct'' for k2_treaps.
template<uint8_t t_k,
typename t_bv,
typename t_rank,
typename t_max_vec>
void
construct(k2_treap<t_k, t_bv, t_rank, t_max_vec>& idx, std::string file, cache_config& config)
{
int_vector_buffer<> buf_x(file+".x", std::ios::in);
int_vector_buffer<> buf_y(file+".y", std::ios::in);
int_vector_buffer<> buf_w(file+".w", std::ios::in);
idx = k2_treap<t_k, t_bv, t_rank, t_max_vec>(buf_x, buf_y, buf_w, config.dir);
}
//! Specialized version of method ,,construct_im'' for k2_treaps.
template <uint8_t t_k, typename t_bv, typename t_rank, typename t_max_vec>
void construct_im(k2_treap<t_k, t_bv, t_rank, t_max_vec>& idx,
std::vector<std::array<uint64_t, 3>> data)
{
std::string tmp_dir = ram_file_name("/tmp");
std::vector<std::tuple<uint64_t,uint64_t,uint64_t>> d;
for (auto x : data) {
d.push_back(std::make_tuple(x[0],x[1],x[2]));
}
idx = k2_treap<t_k, t_bv, t_rank, t_max_vec>(d, tmp_dir);
}
}
#endif
|