![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
#include <skiplist.h>
Classes | |
class | Iterator |
struct | Node |
Public Member Functions | |
SkipList (Comparator cmp, Arena *arena) | |
void | Insert (const Key &key) |
bool | Contains (const Key &key) const |
Private Types | |
enum | { kMaxHeight = 12 } |
Private Member Functions | |
int | GetMaxHeight () const |
Node * | NewNode (const Key &key, int height) |
int | RandomHeight () |
bool | Equal (const Key &a, const Key &b) const |
bool | KeyIsAfterNode (const Key &key, Node *n) const |
Node * | FindGreaterOrEqual (const Key &key, Node **prev) const |
Node * | FindLessThan (const Key &key) const |
Node * | FindLast () const |
SkipList (const SkipList &) | |
void | operator= (const SkipList &) |
Private Attributes | |
Comparator const | compare_ |
Arena *const | arena_ |
Node *const | head_ |
port::AtomicPointer | max_height_ |
Random | rnd_ |
Definition at line 38 of file skiplist.h.
|
private |
Enumerator | |
---|---|
kMaxHeight |
Definition at line 95 of file skiplist.h.
|
explicit |
Definition at line 322 of file skiplist.h.
|
private |
bool leveldb::SkipList< Key, Comparator >::Contains | ( | const Key & | key | ) | const |
Definition at line 370 of file skiplist.h.
|
inlineprivate |
Definition at line 117 of file skiplist.h.
|
private |
Definition at line 259 of file skiplist.h.
|
private |
Definition at line 302 of file skiplist.h.
|
private |
Definition at line 282 of file skiplist.h.
|
inlineprivate |
Definition at line 107 of file skiplist.h.
void leveldb::SkipList< Key, Comparator >::Insert | ( | const Key & | key | ) |
Definition at line 334 of file skiplist.h.
|
private |
Definition at line 253 of file skiplist.h.
|
private |
Definition at line 181 of file skiplist.h.
|
private |
|
private |
Definition at line 240 of file skiplist.h.
|
private |
Definition at line 99 of file skiplist.h.
|
private |
Definition at line 98 of file skiplist.h.
|
private |
Definition at line 101 of file skiplist.h.
|
private |
Definition at line 105 of file skiplist.h.
|
private |
Definition at line 113 of file skiplist.h.