#include using namespace std; #include #include "Conjunto.h" void testProfundidad(const Conjunto & c) { for (int p = 0; p <= 5; p++) cout << p <<": " << c.verificarProfundidad(p) << endl; cout << endl; } int main () { Conjunto conjunto; vector datos = {100, 200, 50, 300, 150, 25, 175, 125, 10, 5}; testProfundidad(conjunto); for (int dato : datos) { conjunto.insertar(dato); cout << "Insertado " << dato << endl; testProfundidad(conjunto); } }