內容目錄
Java Lab 5: ADTs (The Add comment Overview JobManager)
This lab activity focuses on the design and implementation of an abstract data type (ADT) that we shall call JobManager .
A JobManager is responsible to managing a set of jobs, which are identified by integer IDs from 1 to n .
A JobManager also maintains a set of Robot objects that are responsible for completing these jobs.
The JobManager ADT’s operations enable its user to manage the set of Robots and the assignment of jobs to those Robots.
Learning Goals
- Develop proficiency in recognizing, reasoning about, and implementing ADTs, which includes:
- Interpreting the specified operations for an ADT;
- Classifying ADT operations by type
留言