1. HashSethistorical

    Hash-based Set semantics, equality/hashCode requirements, null handling, and concurrency characteristics.

  2. LinkedHashSethistorical

    A HashSet variant with deterministic insertion-order iteration.

  3. Collections.synchronizedSethistorical

    Synchronized Set wrappers and the need for external synchronization during compound operations and iteration.

  4. TreeSethistorical

    Sorted/navigable set semantics, comparator ordering, and logarithmic tree operations.