forked from whr-a/Ticket-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database_copy.hpp
843 lines (795 loc) · 28.7 KB
/
database_copy.hpp
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
#ifndef DATABASE
#define DATABASE
#include <exception>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdio>
#include <cmath>
#include <fstream>
#include "utility.hpp"
#include "vector.hpp"
template<class keys,class T>
class database
{
private:
class data{
public:
keys key;
T value;
data(){}
data(const keys &obj,const T &value_){
key=obj;
value=value_;
}
friend bool operator < (const data &obj1,const data &obj2){
if(obj1.key<obj2.key)return true;
if(obj1.key == obj2.key && obj1.value < obj2.value)return true;
return false;
}
friend bool operator > (const data &obj1,const data &obj2){
return obj2<obj1;
}
friend bool operator == (const data &obj1,const data &obj2){
return (!(obj1<obj2))&&(!(obj2<obj1));
}
friend bool operator >= (const data &obj1,const data &obj2){
return !(obj1<obj2);
}
friend bool operator <= (const data &obj1,const data &obj2){
return !(obj2<obj1);
}
};
static const int size_of_block=2048/(sizeof(keys)+sizeof(T))*2;
std::fstream opfile;
class start
{
public:
int pos_of_root;
int num_of_block;
start(){
pos_of_root=1;
num_of_block=1;
}
start(int pos_of_root_,int num_of_block_)
:pos_of_root(pos_of_root_),num_of_block(num_of_block_){}
};
start head;
enum nodetype{index,leaf};
class node
{
public:
nodetype type;
int pos_of_fa;
int now_num;
int edge[size_of_block+1];
data value[size_of_block];
int front_pos,back_pos;
node(){
type=leaf;
now_num=0;
pos_of_fa=0;
front_pos=0;
back_pos=0;
memset(edge,0,sizeof(edge));
}
};
void writenode(node *obj,int num){
opfile.seekp(sizeof(start)+(num-1)*sizeof(node));
opfile.write(reinterpret_cast<char*>(obj),sizeof(node));
}
void writenode_(node &obj,int num){
opfile.seekp(sizeof(start)+(num-1)*sizeof(node));
opfile.write(reinterpret_cast<char*>(&obj),sizeof(node));
}
//LinkedHashMap节点定义
struct Node {
int key;
node* value;
Node* prev;
Node* next;
Node()
: prev(nullptr), next(nullptr) {}
Node(int k,node* v)
: key(k), value(v), prev(nullptr), next(nullptr) {}
};
// 哈希表节点定义
struct Nodes {
int key;
Node* value;
Nodes* next;
Nodes(const int& k,Node* v)
: key(k), value(v), next(nullptr) {}
};
class LinkedHashMap {
public:
class MyUnorderedMap {
public:
// 构造函数
const static size_t TableSize=1024*1024/sizeof(node);
MyUnorderedMap() {
table = new Nodes*[TableSize]();
}
// 析构函数
~MyUnorderedMap() {
clear();
delete[] table;
}
// 插入键值对
void insert(const int& key, const node*& value) {
int index = hashFunction(key);
Nodes* newNode = new Nodes(key, value);
newNode->next = table[index];
table[index] = newNode;
}
// 删除键值对
void erase(const int& key) {
int index = hashFunction(key);
Nodes* currNode = table[index];
Nodes* prevNode = nullptr;
while (currNode != nullptr) {
if (currNode->key == key) {
if (prevNode != nullptr)
prevNode->next = currNode->next;
else
table[index] = currNode->next;
delete currNode;
break;
}
prevNode = currNode;
currNode = currNode->next;
}
}
// 获取值
Node*& operator[](const int& key) {
int index = hashFunction(key);
Nodes* currNode = table[index];
while (currNode != nullptr) {
if (currNode->key == key)
return currNode->value;
currNode = currNode->next;
}
Nodes* newNode = new Nodes(key,nullptr);
newNode->next = table[index];
table[index] = newNode;
return newNode->value;
}
// 判断键是否存在
bool contains(const int& key) const {
int index = hashFunction(key);
Nodes* currNode = table[index];
while (currNode != nullptr) {
if (currNode->key == key)
return true;
currNode = currNode->next;
}
return false;
}
// 获取键值对数量
size_t size() const {
size_t count = 0;
for (int i = 0; i < TableSize; i++) {
Nodes* currNode = table[i];
while (currNode != nullptr) {
count++;
currNode = currNode->next;
}
}
return count;
}
// 清空哈希表
void clear() {
for (int i = 0; i < TableSize; i++) {
Nodes* currNode = table[i];
while (currNode != nullptr) {
Nodes* nextNode = currNode->next;
delete currNode;
currNode = nextNode;
}
table[i] = nullptr;
}
}
// 哈希表节点定义
Nodes** table; // 哈希表数组
// 哈希函数
int hashFunction(const int& key) const {
return std::hash<int>()(key) % TableSize;
}
};
// 构造函数
LinkedHashMap() {
head = new Node();
tail = new Node();
head->next = tail;
tail->prev = head;
}
// 析构函数
~LinkedHashMap() {}
// 插入键值对
Node* insert(const int& key,node* value) {
if (map.contains(key)) {
// 键已存在,更新值并将节点移到链表头部
Node* node_ = map[key];
node_->value = value;
moveToHead(node_);
return nullptr;
} else {
// 键不存在,创建新节点并插入到链表头部
Node* node_ = new Node(key, value);
map[key] = node_;
insertToHead(node_);
// 检查容量是否超出限制
if (map.size() > capacity) {
// 超出限制,移除链表尾部的节点
Node* tailNode = removeTail();
return tailNode;
// map.erase(tailNode->key);
// delete tailNode->value;
// delete tailNode;
}
return nullptr;
}
}
// 删除键值对
void erase(const int& key) {
if (map.contains(key)) {
Node* node = map[key];
removeNode(node);
map.erase(key);
delete node;
}
}
// 获取值
node* operator[](const int& key) {//危险,要先contains一下才能用!!!
Node* node = map[key];
moveToHead(node);
return node->value;
}
// 判断键是否存在
bool contains(const int& key) const {
return map.contains(key);
}
// 获取键值对数量
size_t size() const {
return map.size();
}
// 清空链表和哈希表
void clear() {
for (int i = 0; i < map.TableSize; i++) {
Nodes* currNode = map.table[i];
while (currNode != nullptr) {
Nodes* nextNode = currNode->next;
delete currNode->value->value;
delete currNode->value;
delete currNode;
currNode = nextNode;
}
map.table[i] = nullptr;
}
head->next = tail;
tail->prev = head;
}
// 链表节点定义
Node* head; // 链表头节点
Node* tail; // 链表尾节点
MyUnorderedMap map; // 哈希表,用于快速查找节点
static const size_t capacity = 1024*1024/sizeof(node); // 容量限制
// 将节点插入到链表头部
void insertToHead(Node* node) {
node->next = head->next;
node->prev = head;
head->next->prev = node;
head->next = node;
}
// 将节点移动到链表头部
void moveToHead(Node* node) {
removeNode(node);
insertToHead(node);
}
// 移除节点
void removeNode(Node* node) {
node->prev->next = node->next;
node->next->prev = node->prev;
}
// 移除链表尾部的节点
Node* removeTail() {
Node* tailNode = tail->prev;
removeNode(tailNode);
return tailNode;
}
};
LinkedHashMap map;
//int cnt=0;
void getstart(start &st){
opfile.seekg(0);
opfile.read(reinterpret_cast<char*>(&st),sizeof(start));
}
void writestart(start &st){
opfile.seekp(0);
opfile.write(reinterpret_cast<char*>(&st),sizeof(start));
}
void getnode(node *&obj,int num) {
if(!map.contains(num)){
node* newNode = new node();
Node* x=map.insert(num,newNode);
if(x!=nullptr){
writenode(x->value,x->key);
map.map.erase(x->key);
delete x->value;
delete x;
}
opfile.seekg(sizeof(start) + (num-1)*sizeof(node));
opfile.read(reinterpret_cast<char*>(newNode),sizeof(node));
obj=newNode;
}
else obj=map[num];
}
int finds(const keys &key,int num){
node* temp;
getnode(temp,num);
if(temp->type == leaf)return num;
int l = 0, r = temp->now_num - 1, mid;
while (l <= r) {
int mid = (l + r) >> 1;
if (temp->value[mid].key < key)
l = mid + 1;
else
r = mid - 1;
}
return finds(key,temp->edge[r+1]);
}
int find_pos(const data &obj,int num){
node* temp;
getnode(temp,num);
if(temp->type==leaf)return num;
else{
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,obj)-temp->value;
//if(temp->edge[t]>head.num_of_block)std::cout<<114514<<std::endl;
return find_pos(obj,temp->edge[t]);
}
}
void updatefather(int pos,int fa_pos){
node* temp;
getnode(temp,pos);
temp->pos_of_fa=fa_pos;
}
void updateleft(int pos,int left){
if(pos==0)return;
node* temp;
getnode(temp,pos);
temp->back_pos=left;
}
void updateright(int pos,int right){
if(pos==0)return;
node* temp;
getnode(temp,pos);
temp->front_pos=right;
}
void flashindex(int fa_pos,int son_pos,const data &obj){
node* temp;
getnode(temp,fa_pos);
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,obj)-temp->value;
for(int i=temp->now_num;i>t;i--){
temp->value[i]=temp->value[i-1];
temp->edge[i+1]=temp->edge[i];
}//proofed
temp->value[t]=obj;
temp->edge[t+1]=son_pos;
temp->now_num++;
if(temp->now_num==size_of_block){
node temp2;
int mid=size_of_block/2;
temp2.now_num=mid-1;
for(int i=mid+1;i<size_of_block;i++){
temp2.value[i-mid-1]=temp->value[i];
temp2.edge[i-mid-1]=temp->edge[i];
updatefather(temp->edge[i],head.num_of_block+1);
}
temp2.edge[mid-1]=temp->edge[size_of_block];
updatefather(temp->edge[size_of_block],head.num_of_block+1);
temp->now_num=mid;
temp2.type=index;
if(temp->pos_of_fa==0){
temp->pos_of_fa=head.num_of_block+2;
temp2.pos_of_fa=head.num_of_block+2;
writenode_(temp2,head.num_of_block+1);
head.num_of_block++;
node temp3;
temp3.edge[0]=fa_pos;
temp3.edge[1]=head.num_of_block;
temp3.value[0]=temp->value[mid];
temp3.now_num=1;
temp3.type=index;
writenode_(temp3,head.num_of_block+1);
head.num_of_block++;
head.pos_of_root=head.num_of_block;
}
else{
temp2.pos_of_fa=temp->pos_of_fa;
writenode_(temp2,head.num_of_block+1);
head.num_of_block++;
flashindex(temp->pos_of_fa,head.num_of_block,temp->value[mid]);
}
}
}
void devideleaf(int pos){
node* temp1;
getnode(temp1,pos);
node temp2;
temp2.back_pos=pos;
temp2.front_pos=temp1->front_pos;
updateleft(temp1->front_pos,head.num_of_block+1);
temp1->front_pos=head.num_of_block+1;
for(int i=0;i<size_of_block/2;i++)temp2.value[i]=temp1->value[size_of_block/2+i];
temp2.now_num=size_of_block/2;
temp1->now_num=size_of_block/2;
if(temp1->pos_of_fa==0){
temp1->pos_of_fa=head.num_of_block+2;
temp2.pos_of_fa=head.num_of_block+2;
writenode_(temp2,head.num_of_block+1);
head.num_of_block++;
node temp3;
temp3.now_num=1;
temp3.edge[0]=pos;
temp3.edge[1]=head.num_of_block;
temp3.value[0]=temp2.value[0];
temp3.type=index;
writenode_(temp3,head.num_of_block+1);
head.num_of_block++;
head.pos_of_root=head.num_of_block;
}
else{
temp2.pos_of_fa=temp1->pos_of_fa;
writenode_(temp2,head.num_of_block+1);
head.num_of_block++;
flashindex(temp1->pos_of_fa,head.num_of_block,temp2.value[0]);
}
}
bool judge(int pos,int fa,node*& temp){
if(pos==0)return false;
getnode(temp,pos);
if(temp->pos_of_fa!=fa)return false;
return true;
}
void merge(int pos,node* obj1,node* obj2,node* fa,int tx){
obj1->value[obj1->now_num]=fa->value[tx];
obj1->now_num++;
for(int i=0;i<obj2->now_num;i++){
obj1->value[obj1->now_num+i]=obj2->value[i];
obj1->edge[obj1->now_num+i]=obj2->edge[i];
node temp;
updatefather(obj2->edge[i],pos);
}
obj1->now_num+=obj2->now_num;
obj1->edge[obj1->now_num]=obj2->edge[obj2->now_num];
updatefather(obj2->edge[obj2->now_num],pos);
}
void balanceindex(int pos,data delindex){
node* temp;
getnode(temp,pos);
if(pos==head.pos_of_root && temp->now_num==1){
node* son;
getnode(son,temp->edge[0]);
son->pos_of_fa=0;
head.pos_of_root=temp->edge[0];
return;
}
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,delindex)-temp->value;
for(int i=t-1;i<temp->now_num-1;i++)temp->value[i]=temp->value[i+1];
for(int i=t;i<temp->now_num;i++)temp->edge[i]=temp->edge[i+1];
temp->now_num--;
if(pos==head.pos_of_root)return;
if(temp->now_num<size_of_block/2-1){
node* fa;
getnode(fa,temp->pos_of_fa);
int tx=sjtu::upper_bound(fa->value,fa->value+fa->now_num,temp->value[0])-fa->value;
if(tx!=fa->now_num){
node* rightbro;
getnode(rightbro,fa->edge[tx+1]);
if(rightbro->now_num>=size_of_block/2){
temp->edge[size_of_block/2-1]=rightbro->edge[0];
updatefather(rightbro->edge[0],pos);
temp->value[size_of_block/2-2]=fa->value[tx];
fa->value[tx]=rightbro->value[0];
for(int i=0;i<rightbro->now_num-1;i++){
rightbro->value[i]=rightbro->value[i+1];
rightbro->edge[i]=rightbro->edge[i+1];
}
rightbro->edge[rightbro->now_num-1]=rightbro->edge[rightbro->now_num];
rightbro->now_num--;
temp->now_num++;
}
else{
merge(pos,temp,rightbro,fa,tx);
balanceindex(temp->pos_of_fa,fa->value[tx]);
}
}
else{
node *leftbro;
getnode(leftbro,fa->edge[tx-1]);
if(leftbro->now_num>=size_of_block/2){
for(int i=temp->now_num;i>0;i--){
temp->value[i]=temp->value[i-1];
temp->edge[i+1]=temp->edge[i];
}
temp->edge[1]=temp->edge[0];
temp->edge[0]=leftbro->edge[leftbro->now_num];
temp->value[0]=fa->value[fa->now_num-1];
updatefather(temp->edge[0],pos);
temp->now_num++;
leftbro->now_num--;
fa->value[tx-1]=leftbro->value[leftbro->now_num];
}
else{
merge(fa->edge[tx-1],leftbro,temp,fa,tx-1);
balanceindex(temp->pos_of_fa,fa->value[tx-1]);
}
}
}
}
void balanceleaf(int pos){//平衡叶子节点,现在大小小于size_of_block-1
node *temp,*temp_back=nullptr,*temp_front=nullptr;//前兄弟和后兄弟节点
getnode(temp,pos);
if(!temp->back_pos && !temp->front_pos)return;//前后都没有节点,说明是孤寡,只可能是根节点
if(!judge(temp->back_pos,temp->pos_of_fa,temp_back)){//后面没有节点或者后面的节点并非兄弟节点
getnode(temp_front,temp->front_pos);//获得前面一个节点
if(temp_front->now_num>size_of_block/2-1){//可以借
temp->value[size_of_block/2-2]=temp_front->value[0];
for(int i=0;i<temp_front->now_num-1;i++)temp_front->value[i]=temp_front->value[i+1];
temp_front->now_num--;
temp->now_num++;
node* temp_fa;
getnode(temp_fa,temp->pos_of_fa);
int t=sjtu::upper_bound(temp_fa->value,temp_fa->value+temp_fa->now_num,
temp->value[size_of_block/2-2])-temp_fa->value;
temp_fa->value[t-1]=temp_front->value[0];
}
else{//不能借,要合并
for(int i=size_of_block/2-2;i<size_of_block-3;i++)
temp->value[i]=temp_front->value[i-(size_of_block/2-2)];
temp->front_pos=temp_front->front_pos;
updateleft(temp->front_pos,pos);
temp->now_num=size_of_block-3;
balanceindex(temp->pos_of_fa,temp_front->value[0]);
}
return;
}
if(!judge(temp->front_pos,temp->pos_of_fa,temp_front)){//前面一个节点不存在或非兄弟
if(temp_back->now_num>size_of_block/2-1){//借
for(int i=temp->now_num;i>0;i--)temp->value[i]=temp->value[i-1];
temp->value[0]=temp_back->value[temp_back->now_num-1];
temp_back->now_num--;
temp->now_num++;
node* temp_fa;
getnode(temp_fa,temp->pos_of_fa);
int t=sjtu::upper_bound(temp_fa->value,temp_fa->value+temp_fa->now_num,
temp->value[0])-temp_fa->value;
temp_fa->value[t]=temp->value[0];
}
else{//合并
for(int i=size_of_block/2-1;i<size_of_block-3;i++)
temp_back->value[i]=temp->value[i-size_of_block/2+1];
temp_back->front_pos=temp->front_pos;
updateleft(temp_back->front_pos,temp->back_pos);
temp_back->now_num=size_of_block-3;
balanceindex(temp_back->pos_of_fa,temp->value[0]);
}
return;
}
//走到这里说明左右都有且是兄弟
// getnode(temp_back,temp->back_pos);
// getnode(temp_front,temp->front_pos);
if(temp_back->now_num>size_of_block/2-1){//找前面借
for(int i=temp->now_num;i>0;i--)temp->value[i]=temp->value[i-1];
temp->value[0]=temp_back->value[temp_back->now_num-1];
temp_back->now_num--;
temp->now_num++;
node* temp_fa;
getnode(temp_fa,temp->pos_of_fa);
int t=sjtu::upper_bound(temp_fa->value,temp_fa->value+temp_fa->now_num,
temp->value[0])-temp_fa->value;
temp_fa->value[t]=temp->value[0];
return;
}
if(temp_front->now_num>size_of_block/2-1){//找后面借
temp->value[size_of_block/2-2]=temp_front->value[0];
for(int i=0;i<temp_front->now_num-1;i++)temp_front->value[i]=temp_front->value[i+1];
temp_front->now_num--;
temp->now_num++;
node* temp_fa;
getnode(temp_fa,temp->pos_of_fa);
int t=sjtu::upper_bound(temp_fa->value,temp_fa->value+temp_fa->now_num,
temp->value[size_of_block/2-2])-temp_fa->value;
temp_fa->value[t-1]=temp_front->value[0];//修改
return;
}
//都不能借,只好找前面合并
for(int i=size_of_block/2-2;i<size_of_block-3;i++)
temp->value[i]=temp_front->value[i-(size_of_block/2-2)];
temp->front_pos=temp_front->front_pos;
updateleft(temp->front_pos,pos);
temp->now_num=size_of_block-3;
balanceindex(temp->pos_of_fa,temp_front->value[0]);
}
void freshleft(int pos,const data &obj){
if(pos==0)return;
node* temp;
getnode(temp,pos);
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,obj)-temp->value;
if(t!=0){
temp->value[t-1]=obj;
}
else freshleft(temp->pos_of_fa,obj);
}
public:
database(){}
database(std::string name){
std::ifstream in;
in.open(name);
if(!in){
std::ofstream outfile(name);
outfile.seekp(0);
start t1;
outfile.write(reinterpret_cast<char*>(&t1),sizeof(start));
outfile.seekp(sizeof(start));
node t2;
outfile.write(reinterpret_cast<char*>(&t2),sizeof(node));
}
opfile.open(name);
getstart(head);
}
void clear(std::string name){
std::ofstream file(name, std::ios::trunc);
file.close();
map.clear();
std::ifstream in;
in.open(name);
if(!in){
std::ofstream outfile(name);
outfile.seekp(0);
start t1;
outfile.write(reinterpret_cast<char*>(&t1),sizeof(start));
outfile.seekp(sizeof(start));
node t2;
outfile.write(reinterpret_cast<char*>(&t2),sizeof(node));
}
opfile.open(name);
getstart(head);
}
void setfile(std::string name){
std::ifstream in;
in.open(name);
if(!in){
std::ofstream outfile(name);
outfile.seekp(0);
start t1;
outfile.write(reinterpret_cast<char*>(&t1),sizeof(start));
outfile.seekp(sizeof(start));
node t2;
outfile.write(reinterpret_cast<char*>(&t2),sizeof(node));
}
opfile.open(name);
getstart(head);
}
~database(){
writestart(head);
for (int i = 0; i < map.map.TableSize; i++) {
Nodes* currNode = map.map.table[i];
while (currNode != nullptr) {
Nodes* nextNode = currNode->next;
writenode(currNode->value->value,currNode->value->key);
delete currNode->value->value;
delete currNode->value;
delete currNode;
currNode = nextNode;
}
map.map.table[i] = nullptr;
}
delete map.head;
delete map.tail;
opfile.close();
}
sjtu::vector<T> find(const keys &key){
int num = finds(key,head.pos_of_root);
node* temp;
getnode(temp,num);
int l=0,r=temp->now_num-1;
while(l<r){
int mid=(l+r)>>1;
if(key<=temp->value[mid].key)r=mid;
else l=mid+1;
}
int x=l;
sjtu::vector<T> ans;
if(temp->now_num==0)return ans;
while(true){
if(x==temp->now_num){
if(temp->front_pos==0)break;
getnode(temp,temp->front_pos);
x=0;
}
//std::cout<<x<<'*'<<std::endl;
if(temp->value[x].key==key)ans.push_back(temp->value[x].value);
else if(key<temp->value[x].key)break;
x++;
}
return ans;
}
void insert(const keys &index,const T &val){
data obj(index,val);
int pos=find_pos(obj,head.pos_of_root);
node* temp;
getnode(temp,pos);
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,obj)-temp->value;
for(int i=temp->now_num;i>t;i--)temp->value[i]=temp->value[i-1];
temp->value[t]=obj;
temp->now_num++;
if(temp->now_num==size_of_block)devideleaf(pos);
}
void erase(keys key,T val){
data obj(key,val);
int pos=find_pos(obj,head.pos_of_root);
node* temp;
getnode(temp,pos);
int t=sjtu::upper_bound(temp->value,temp->value+temp->now_num,obj)-temp->value;
if(!(temp->value[t-1]==obj))return;
t--;
if(t==0 && head.pos_of_root!=pos){
if(temp->now_num!=1){
node* fa;
getnode(fa,temp->pos_of_fa);
int t1=sjtu::upper_bound(fa->value,fa->value+fa->now_num,temp->value[0])-fa->value;
if(t1!=0){
fa->value[t1-1]=temp->value[1];
}
else freshleft(fa->pos_of_fa,temp->value[1]);
}
else{
node* fa;
getnode(fa,temp->pos_of_fa);
node *left,*right;
if(!judge(temp->back_pos,temp->pos_of_fa,left)){
getnode(right,temp->front_pos);
int t1=sjtu::upper_bound(fa->value,fa->value+fa->now_num,temp->value[0])-fa->value;
if(t1!=0){
fa->value[t1-1]=right->value[0];
}
else freshleft(fa->pos_of_fa,right->value[0]);
}
else if(!judge(temp->front_pos,temp->pos_of_fa,right)){
int t1=sjtu::upper_bound(fa->value,fa->value+fa->now_num,temp->value[0])-fa->value;
if(t1!=0){
fa->value[t1-1]=left->value[left->now_num-1];
}
else freshleft(fa->pos_of_fa,left->value[left->now_num-1]);
}
else{
getnode(right,temp->front_pos);
int t1=sjtu::upper_bound(fa->value,fa->value+fa->now_num,temp->value[0])-fa->value;
if(t1!=0){
fa->value[t1-1]=right->value[0];
}
else freshleft(fa->pos_of_fa,right->value[0]);
}
}
}
for(int i=t;i<temp->now_num-1;i++)temp->value[i]=temp->value[i+1];
temp->now_num--;
if(temp->now_num<size_of_block/2-1)balanceleaf(pos);
}
bool empty()
{
node* root;
getnode(root,head.pos_of_root);
if(root->type==leaf && root->now_num==0)return true;
else return false;
}
// void prints(){
// node root;
// getnode(root,head.pos_of_root);
// std::cout<<std::endl<<"***********"<<std::endl;
// for(int i=0; i< root.now_num;i++)std::cout<<root.value[i].key<<std::endl;
// std::cout<< "***********"<<std::endl;
// }
};
#endif