A Java Swing application that visually represents common data structures, including Arrays, Linked Lists, Queues, Stacks, and Binary Trees. Designed as an educational tool to help users better ...
BasicStack - simple array based stack which is not thread safe. NaiveSyncStack - array based stack with push and pop methods synchronized. SyncStack - thread safe array based stack with wait(), notify ...