This assignment deals with data structures. Specifically, you'll be providing an implementation for a defined ADT. You'll also be reacquainting yourself with generics and packages.
The Macguffin games have been very popular lately. People from far and wide have been drawn to the games; some to play with friends, and some to simply play. As you, of course, know, the Macguffin games can be played individually, as a pair, as a trio, or even as a group of four.
Unfortunately, as you also know, the waiting lines can often get quite large for the games. What's more, considering the sheer number of players, and the variety of group sizes, it can be problematic to fairly accommodate people in an appropriate order.
Thus, the concept of a "Pool Queue" was created, to accommodate lines of people specifically for the Macguffin Games. A Pool Queue is pretty simple:
You have been provided with an interface for a PoolQueue. It defines the minimum operations for the list. Your primary task is to create a class, ConcretePoolQueue, that implements the interface. Note that it should throw an InsufficientElementsException if a remove is attempted that can't be satisfied. You are free to implement the class in whatever fashion you desire (within reason). For example, though a linked implementation is recommended (because it's much easier), a contiguous implementation is also allowed. Outside of completely bizarre design choices 1 , you aren't required to concern yourself with things like optimal efficiency, or adhering to any specific design style. However, refer to the interface for one extra requirement. You've also been provided with a sample test program, but feel free to make your own as well (you may, for example, wish to more rigorously test your implementation).
In addition to the sample output and printed code (see below), you must also include a typed writeup. In it, include the Big-Oh complexities of your implementations for addTriple, removeTriple, and hasTriple. Include brief explanations for each.
Also briefly discuss your approach to how you'd answer for the generalized add and remove.
The basic premise is simple. Assuming groups enter from the right and exit to the left:
D
BEG
ACFH
Suppose you wanted a group of 4. There are two possible patterns: ADEF, and BCGH. In this case, only ADEF is considered valid, because A has the highest priority (and thus must be included if possible). Even though BC does have a higher priority than DEF, that doesn't matter; A trumps. Similarly, if a triple had been requested instead, even though there would be three potential combinations (ABC, DEF, and AGH), only ABC is valid. (Note: as mentioned above, you can consider the result of ABC to be equivalent to ACB, BAC, BCA, CAB, and CBA)
---Sample Execution---
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
1
Enter Name: Abby
:- Added [Abby]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
2
First: Bobby
Second: Claire
:- Added [Bobby,Claire]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
3
First: Darren
Second: Edgar
Third: Felix
:- Added [Darren,Edgar,Felix]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
2
First: Gilligan
Second: Harry
:- Added [Gilligan,Harry]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
4
First: Ilona
Second: Jill
Third: Kevin
Fourth: Larry
:- Added [Ilona,Jill,Kevin,Larry]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
9
One: true
Two: true
Three: true
Four: true
Count: 12
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
8
:> [Abby,Felix,Edgar,Darren]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
9
One: false
Two: true
Three: false
Four: true
Count: 8
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
8
:> [Claire,Bobby,Harry,Gilligan]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
8
:> [Larry,Kevin,Jill,Ilona]
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
9
One: false
Two: false
Three: false
Four: false
Count: 0
1. Add One 2. Add Two 3. Add Three 4. Add Four
5. Remove One 6. Remove Two 7. Remove Three 8. Remove Four
9. Test Options 0. Quit
0