#include "Tree23.h" int main() { Tree23 t; for (int i=1; i<16; i++) { t.Add(i); cout << "adding " << i << "\n" << t; } return 0; }