AVL tree/Managed C++: Difference between revisions

m
no edit summary
mNo edit summary
Line 2,250:
{
Set<int>^ S = gcnew Set<int>(1, 3, 5 , 6, 7, 9);
Set<int>^ T = gcnew Set<int>(2, 4, 6 , 7, 8, 9);
Set<int>^ U = S | T;
Console::WriteLine(S + " | " + T + " == " + U);
return 0;