b-tree-plus-alpha
Loading...
Searching...
No Matches
permutation_item.hpp
1#pragma once
2#include "../bp_tree.hpp"
3#include "stool/include/all.hpp"
4
5namespace stool
6{
7 namespace bptree
8 {
14 {
15 uint64_t pointer;
16 uint8_t key;
17
19
20 };
21 PermutationItem(uint64_t _pointer, uint64_t _key) : pointer(_pointer), key(_key)
22 {
23 }
24 };
25 }
26}
The value stored in the BPTree of DynamicPermutation [Unchecked AI's Comment].
Definition permutation_item.hpp:14