In this assignment you will be modifying several classes that will be given to you. In addition, you will perform an exp

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

In this assignment you will be modifying several classes that will be given to you. In addition, you will perform an exp

Post by answerhappygod »

In this assignment you will be modifying several classes thatwill be given to you.
In addition, you will perform an experiment to run threedifferent sorts and collect the amount of time it takes for eachone to sort lists of varying lengths. Using this data, you willcompare the performance of the sorts.
This is a multi-part project. For best results, implementthe parts in the order given below.
Part 1. Sorter
Part 2. Library Class
Library
- state: String
- branch: String
- city: String
- zip: String
- county: String
- int squareFeet: int
- int hoursOpen: int
- int weeksOpen: int
+ Library(state: String, branch: String, city: String, zip:String, county: String, squareFeet: int, hoursOpen: int, weeksOpen:int)
+ getState(): String
+ getBranch(): String
+ getCity(): String
+ getZip(): String
+ getCounty(): String
+ getSquareFeet(): int
+ getHoursOpen(): int
+ getWeeksOpen(): int
+ setState(state: String): void
+ setBranch(branch: String):void
+ setCity(city: String):void
+ setZip(zip: String):void
+ setCounty(count: : String):void
+ setSquareFeet(sqfeet: int): void
+ setHoursOpen(hrsOpen: int): void
+ setWeeksOpen(weeksOpen: int): void
+ equals(Object obj): boolean
+ compareTo(Library): int
+ toString(): String
Part 3. MySorter Class
Part 4. ReadFromFile Class
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply