school/cs235/final/br_node.cpp

20 lines
351 B
C++
Raw Normal View History

2016-04-06 20:46:10 -07:00
#include "br_node.h"
br_node::br_node(string data): data(data), color(0), parent(NULL), left(NULL), right(NULL) {}
string br_node::getWord() {
return data;
}
int br_node::getColor() {
return color;
}
RedBlackNodeInterface* br_node::getLeftChild() {
return left;
}
RedBlackNodeInterface* br_node::getRightChild() {
return right;
}