CMPE Truck Simulator is a fleet management simulation project for the CmpE 250: Data Structures and Algorithms course. The goal is to efficiently manage a fleet of trucks with varying capacities by assigning them to parking lots, processing loads, and handling logistics operations.
- The program processes structured command files and generates outputs accordingly.
- Sample commands:
create_parking_lot 50 15 add_truck 100 ready 100 load 100 50 delete_parking_lot 50 count 50
To compile and run the program, follow these steps:
- Compile the Java files:
javac *.java - Run the program with an input file:
java Main <input_file> <output_file>