Skip to content

Instantly share code, notes, and snippets.

@frp
frp / treap.cpp
Created May 29, 2012 17:38
Treap 2 by frp-m.blogspot.com, old variant
struct node
{
int x, y;
node *l, *r;
int cnt;
node(int _x, int _y) : x(_x), y(y), l(0), r(0), cnt(1) {}
};
// ... ... все дальнейшие функции - члены класса treap
@frp
frp / treap.cpp
Created May 26, 2012 20:00
Treap by frp-m.blogspot.com, old variant
#include <cstdlib>
#include <vector>
using namespace std;
struct node
{
int x, y;
node *l, *r;
node(int _x, int _y) : x(_x), y(y), l(0), r(0) {}
};
class treap