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
|
//*************HEADER FILE******************
#include <iostream>
namespace hardendavebintree {
class binarytree {
private:
struct node {
int data;
node* left;
node* right;
};
node* rootptr;
friend void remove_max(node*& rootptr, int& max);
friend void del_aux(node*& rootptr,
int num, bool& found);
friend int find_aux(const node* rootptr,
int num, bool& found);
friend void insert_aux(node*& rootptr, int num);
friend void print_aux(node* rootptr);
//***********************MY CODE***************************
friend size_type size_aux(node* rootptr);
//***********************MY CODE***************************
public:
typedef std::size_t size_type;
binarytree();
void print();
void insert(int num);
int find(int num, bool& found);
void del(int num, bool& found);
//***********************MY CODE***************************
size_type size();
//***********************MY CODE***************************
};
}
//*****************************.CPP FILE************************
#include "binarytree.h"
#include <iostream>
using namespace std;
namespace hardendavebintree {
binarytree::binarytree(){
rootptr = NULL;
}
//***********************MY CODE***************************
binarytree::size_type binarytree::size()
{
return size_aux(rootptr);
}
binarytree::size_type size_aux(binarytree::node* rootptr)
{
binarytree::size_type amount = 0;
if(rootptr != NULL)
{
amount = 1 + size_aux(rootptr -> left) + size_aux(rootptr -> right);
}
return amount;
}
//***********************MY CODE***************************
void binarytree::print() {
print_aux(rootptr);
}
void print_aux(binarytree::node* rootptr){
if (rootptr != NULL) {
print_aux(rootptr -> left);
cout << rootptr -> data << " ";
print_aux(rootptr -> right);
}
}
void binarytree::insert(int num){
insert_aux(rootptr, num);
}
void insert_aux(binarytree::node*& rootptr, int num){
if (rootptr == NULL){
rootptr = new binarytree::node;
rootptr -> data = num;
rootptr -> left = NULL;
rootptr -> right = NULL;
} else if (num <= rootptr -> data) {
insert_aux(rootptr -> left, num);
} else {
insert_aux(rootptr -> right, num);
}
}
int binarytree::find(int num, bool& found) {
return find_aux(rootptr, num, found);
}
int find_aux(const binarytree::node* rootptr, int num, bool& found){
if (rootptr == NULL) {
found = false;
return 0;
} else if (rootptr -> data == num) {
found = true;
return rootptr -> data;
} else if (num < rootptr -> data) {
return find_aux(rootptr -> left, num, found);
} else {
return find_aux(rootptr -> right, num, found);
}
}
void binarytree::del(int num, bool& found) {
del_aux(rootptr, num, found);
}
void del_aux(binarytree::node*& rootptr, int num, bool& found){
if (rootptr == NULL) {
found = false;
} else if (num < rootptr -> data) {
del_aux(rootptr -> left, num, found);
} else if (num > rootptr -> data) {
del_aux(rootptr -> right, num, found);
} else if (rootptr -> left == NULL) {
binarytree::node* tempptr = rootptr;
rootptr = rootptr -> right;
delete tempptr;
found = true;
} else {
int max;
remove_max(rootptr -> left, max);
rootptr -> data = max;
found = true;
}
}
void remove_max(binarytree::node*& rootptr, int& max){
if (rootptr -> right == NULL) {
max = rootptr -> data;
binarytree::node* tempptr = rootptr;
rootptr = rootptr -> left;
delete tempptr;
} else {
remove_max(rootptr -> right, max);
}
}
/*
void remove_max(binarytree::node*& rootptr, int& max){
if (rootptr -> right == NULL){
max = rootptr -> data;
binarytree::node* tempptr = rootptr;
rootptr = rootptr -> left;
delete tempptr;
} else {
remove_max(rootptr -> right, max);
}
}
*/
}
//***************************CLIENT FILE****************************
#include <iostream>
#include <string>
#include "binarytree.h"
using namespace std;
using namespace hardendavebintree;
int main() {
binarytree list;
int num;
bool found;
cout << "enter number to insert (negative to quit): ";
cin >> num;
while (num >= 0){
list.insert(num);
cout << "enter number to insert (negative to quit): ";
cin >> num;
}
list.print();
cout << endl;
cout << "enter number to find (negative to quit): ";
cin >> num;
while (num >= 0){
int result = list.find(num, found);
if (found) {
cout << "found. The data is " << result << endl;
} else {
cout << "not found." << endl;
}
cout << "enter number to find (negative to quit): ";
cin >> num;
}
cout << "enter number to delete (negative to quit): ";
cin >> num;
while (num >= 0){
list.del(num, found);
if (found) {
cout << "found. The list is now ";
list.print();
cout << endl;
} else {
cout << "not found." << endl;
}
cout << "enter number to delete (negative to quit): ";
cin >> num;
}
}
|