TreeSet (BST-based Set)

Problem Statement:

Visualize a TreeSet (implemented with BST). Insert unique keys and see them kept in sorted order.

Insertions: 20, 10, 30, 25, 35, 10 (duplicate)

Step 0: Empty TreeSet.