-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavl.h
52 lines (44 loc) · 1.23 KB
/
avl.h
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
#ifndef AVL_H
#define AVL_H
#include <iostream>
#include <string>
using namespace std;
struct Patient_Record{
string id;
int age;
char gender;
string blood_type;
string date;
string diagnosis;
};
struct TreeNode {
Patient_Record record;
int height;
TreeNode* left;
TreeNode* right;
TreeNode(const Patient_Record& record = Patient_Record(), TreeNode* left = nullptr, TreeNode* right = nullptr): record(record), left(left), right(right), height(1) {}
};
class PatientAVL {
private:
TreeNode* root;
int height(TreeNode* node);
TreeNode* rotateRight(TreeNode* y);
TreeNode* rotateLeft(TreeNode* x);
TreeNode* insert(TreeNode* node, const Patient_Record& record);
bool remove(TreeNode*& node, const string& id);
TreeNode* search(TreeNode* node, const string& id);
void print(TreeNode* node);
void deleteNode(TreeNode* node);
int getBalance(TreeNode* node);
public:
PatientAVL() : root(nullptr) {}
void insert(const Patient_Record& record);
bool remove(const string& id);
Patient_Record* search(const std::string& id);
TreeNode* get_root();
void print();
void deleteTree();
void set_root(TreeNode* new_root);
TreeNode* findMin(TreeNode* node);
};
#endif