Question: Please provide full Java source code for this task along with step by step explanation. Write a program using Java Bin packing university has just

Please provide full Java source code for this task along with stepby step explanation. Write a program using Java Bin packing university hasjust hired you as a consultant to help them reduce costs inPlease provide full Java source code for this task along with step by step explanation.

Write a program using Java Bin packing university has just hired you as a consultant to help them reduce costs in their customer service department. They digitally record customer service phone calls and store all the sound files on portable disks at the end of each week. Since your marginal cost is proportional to the total number of disks used, your task is to assign the sound files to disks using as few disks as possible. Instead, your goal is to design heuristics that run fast and produce high quality solutions. We formulate the bin packing problem as follows: given a set of N file sizes between 0 and 1,000,000KB (1 GB), find a way to assign them to a minimal number of disks, each of capacity 1 GB. The worst-fit heuristic is a simple rule that considers the file sizes in the order they are presented: if the sound file won't fit on any disk, create a new disk; otherwise place the file on a disk that has the most remaining space. For example, this algorithm would put the sizes 700,000 , 800,000,200,000,150,000,150,000 onto three disks: {700,000,200,000},{800,000,150,000}, {150,000}. Note that this does not necessarily lead to the best solution since the five files could fit on two disks. Your main task is to implement the worst-fit heuristic. Perspective. The bin packing problem is a fundamental problem for minimizing the consumption of a scarce resource, usually space. Applications include: packing the data for Internet phone calls into ATM packets, optimizing file storage on removable media, assigning commercials to station breaks, allocating blocks of computer memory, and minimizing the number of identical processors needed to process a set of tasks by a given deadline. In the latter example, the scarce resource is time instead of space. Cloth, paper, and sheet metal manufacturers use a two-dimensional version of the problem to optimally cut pieces of material (according to customer demand) from standard sized rectangular sheets. Shipping companies use a three-dimensional version to optimally pack containers or trucks. Disk data type. First, implement a data type Disk.java that represents a 1GB disk, and contains a list of all of the files it is sotring. This data type should implement the Comparab le interface so that you can use it with a priority queue. Priority queue ADT. You will need to develop an efficient data structure to support all of the basic operations to implement the heuristic. For the worst-fit heuristic, you will certainly need insert and delete the maximum. The priority queue MaxPQ.java is a judicious choice. Input and output. Your client program will read in the set of file sizes (guaranteed to be between zero and a million) from standard input. Your program should output the number of disks used by the heuristic and the sum of all file sizes divided by 1 million (a lower bound on the number of disks required). If the number of files is less than 100 , you should also print out the disks in decreasing order of remaining space. For each disk, print out its remaining space and its contents (in the order the file sizes were inserted). Optionally, you may also print out a unique id associated with each disk (assigned in the order the disks were created) to aid in debugging. Worst-fit decreasing. Experienced travelers know that if small items are packed last, they can fit snugly in the odd gaps in nearly filled luggage. This motivates a smarter strategy: process the items from biggest to smallest. The worst-fit decreasing heuristic is to do worst-fit, but first preprocess the file sizes so that they are in descending order. A modular way to implement this heuristic is to write a separate program IntegerSorter.java that reads in a sequence of integers and prints them out in descending order. Then you can pipe the results through your worstfit heuristic. Analysis. Run your heuristics on a variety of inputs, with N=100,1,000,10,000,100,000, and 1,000,000. Do a few trials for each value of N using random weights between zero and one million. In your writeup, comment on the relative effectiveness (number of disks used) of the two heuristics (worst-fit and worst-fit decreasing)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!