Comp 723 : Software Design
COMP 723 : Software Design and Implementation
Online Voting System
Design Pattern Questions
Assignment 6
Assignment 5
Flyweight and Proxy Design Patterns
Assignment 4
Assignment 3
Assignment 2 : ADT Practice
- Ring
This is a form of bounded queue; if the ring is full, and you add an item,then
it stomps the oldest item (the one at the head).You can think of the finite number of elements being in a ring, and you keep adding around the ring.
- Stomp Stack
A bounded stack; when you push an item on a full stack, it "mashes" the bottom item out to make room at the top