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
|
using namespace std;
#include <utility>
#include <iostream>
#include <queue>
class City
{
friend class TreeNode;
friend class BinaryTree;
private:
string name;
pair<double, double> cityCoords;
int population;
double tempAvg;
public:
City(string, pair<double, double>, int, double);
string getName();
pair<double, double> getCityCoords();
int getPopulation();
double getTempAvg();
friend ostream& operator<<(ostream&, City& c);
};
City::City(string n, pair<double, double> coords, int pop, double temp)
{
name = n;
cityCoords = coords;
population = pop;
tempAvg = temp;
}
string City::getName()
{
return name;
}
pair<double, double> City::getCityCoords()
{
return cityCoords;
}
int City::getPopulation()
{
return population;
}
double City::getTempAvg()
{
return tempAvg;
}
ostream& operator<<(ostream& out, City& c)
{
out << "City: " << c.getName() << " | Coordinates: " << c.getCityCoords().first << ", " << c.getCityCoords().second << " | Population: "
<< c.getPopulation() << " | Average Yearly Temp: " << c.getTempAvg();
return out;
}
class TreeNode
{
friend class BinaryTree;
//is leaf
private:
City city;
TreeNode* left, * right;
TreeNode(City *theCity);
public:
bool isLeaf();
City getCity();
};
TreeNode::TreeNode(City *theCity) : city(*theCity), left(nullptr), right(nullptr)
{
}
City TreeNode::getCity()
{
return city;
}
class BinaryTree
{
public:
BinaryTree();
~BinaryTree();
void add(City *city);
int height();
TreeNode minValue();
void printTreeAscending() const;
void deletion(double lat, double lon);
private:
static void add(TreeNode* toAdd, City *city);
static int height(TreeNode* root);
static TreeNode minValue(TreeNode* node);
static void printTreeAscending(TreeNode* root);
TreeNode* minValueNode(TreeNode* node);
TreeNode* rootPtr;
TreeNode* deletion(TreeNode* root, pair<double, double> coordinates);
void deleteDeepest(TreeNode* root, TreeNode* d_node);
};
BinaryTree::BinaryTree() : rootPtr(nullptr)
{
}
BinaryTree::~BinaryTree()
{
delete rootPtr;
}
void BinaryTree::add(City *city)
{
if (rootPtr)
{
add(rootPtr, city);
}
else
{
rootPtr = new TreeNode(city);
}
}
void BinaryTree::add(TreeNode* toAdd, City *city)
{
if (city->getName() < toAdd->city.getName())
{
if (toAdd->left)
{
add(toAdd->left, city);
}
else
{
toAdd->left = new TreeNode(city);
}
}
else {
if (toAdd->right) {
add(toAdd->right, city);
}
else {
toAdd->right = new TreeNode(city);
}
}
}
void BinaryTree::printTreeAscending() const
{
printTreeAscending(rootPtr);
std::cout << "\n";
}
//uses In-order traversal **
//got some help on cpp forums
void BinaryTree::printTreeAscending(TreeNode* root)
{
if (root)
{
printTreeAscending(root->left);
(root->left && root->right);
cout << root->city << "\n";
printTreeAscending(root->right);
}
}
/* function to delete the given deepest node
(d_node) in binary tree */
void BinaryTree::deleteDeepest(TreeNode* root,
TreeNode* d_node)
{
queue<TreeNode*> q;
q.push(root);
// Do level order traversal until last node
TreeNode* temp;
while (!q.empty()) {
temp = q.front();
q.pop();
if (temp->city.cityCoords == d_node->city.cityCoords) {
temp = NULL;
delete (d_node);
return;
}
if (temp->right) {
if (temp->right->city.cityCoords == d_node->city.cityCoords) {
temp->right = NULL;
delete (d_node);
return;
}
else
q.push(temp->right);
}
if (temp->left) {
if (temp->left->city.cityCoords == d_node->city.cityCoords) {
temp->left = NULL;
delete (d_node);
return;
}
else
q.push(temp->left);
}
}
}
//delete City Node by City Coordinates
void BinaryTree::deletion(double lat, double lon) {
deletion(rootPtr, pair<double, double>(lat, lon));
}
/* function to delete element in binary tree */
TreeNode* BinaryTree::deletion(TreeNode* root, pair<double, double> coordinates)
{
if (root == NULL)
return NULL;
if (root->left == NULL && root->right == NULL) {
if (root->city.cityCoords == coordinates)
return NULL;
else
return root;
}
queue<TreeNode*> q;
q.push(root);
TreeNode* temp = nullptr;
TreeNode* key_node = nullptr;
// Do level order traversal to find deepest
// node(temp) and node to be deleted (key_node)
while (!q.empty()) {
temp = q.front();
q.pop();
if (temp->city.cityCoords == coordinates)
key_node = temp;
if (temp->left)
q.push(temp->left);
if (temp->right)
q.push(temp->right);
}
if (key_node != NULL) {
pair<double, double> x = temp->city.cityCoords;
deleteDeepest(root, temp);
key_node->city.cityCoords = x;
}
return root;
}
int main()
{
BinaryTree* tree = new BinaryTree();
tree->add(new City("London", pair<double, double>(10.0, 40.9), 900000, 5.0));
tree->add(new City("Dublin", pair<double, double>(19.0, 70.95), 20000, 4.5));
tree->add(new City("Madrid", pair<double, double>(80.8, 100.2), 2131200, 21.0));
tree->add(new City("Paris", pair<double, double>(20.6, 164.1), 804400, 11.0));
tree->add(new City("Lisbon", pair<double, double>(49.2, 70.9), 76000, 20.0));
tree->deletion(80.8, 100.2);
tree->printTreeAscending();
return 0;
}
|