AVL tree/Managed C++: Difference between revisions

no edit summary
mNo edit summary
No edit summary
Line 2,252:
Set<int>^ T = gcnew Set<int>(2, 4, 6 , 7, 8, 9);
Set<int>^ U = S | T;
Console::WriteLine(S + " | " + T + " == " + U);
return 0;
}