Define a class that is a linked implementation of the interface FixedSizeListInterface, as described in Project of the previous chapter.
Using a fixed-size array to implement the ADT list limits the size of the list. Some applications can use a list that has a limited length. For example, the length of a list of airline passengers or a list of ticket holders to a movie should not exceed a known maximum.
Define an interface FixedSizeListInterface that is similar to ListInterface, but adds the method isFull and revises the specifications of other methods as necessary to accommodate a fixed-size list. Consider whether your new interface should extend ListInterface. Then define and demonstrate a class that implements FixedSizeListInterface.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.