#include "kv_rbtree.h" #include using namespace std; int main(){ kv_rbtree weights; weights["My Car"] = 1800; weights["Kiki"] = 8.5; weights["Small Piano"] = 400; cout << weights["Kiki"] << endl; weights.print_inorder(); cout << endl; cout << "Contains my car: " << weights.contains("My Car") << endl; cout << "Contains my house: " << weights.contains("My House") << endl; return 0; }