![]() | |
Project 1: Assigned: Tue Jan 21 2025 You work for a bike messenger company, packing saddlebags for the couriers' bikes before they head out. Your company handles packages of widely varying weights. It is quite hard on the messengers if their saddlebags are unbalanced, even in the slightest. You decide to write a program to make sure they are always balanced equally, if possible. Your program takes a list of integer weights and paritions it into two lists that have the same sum of values. In other words, you need to pick some sublist of the overall list such that those integers in the sublist sum up to half of the overall list's sum. I am expecting you to run an exponential-time algorithm to solve this problem, so this will test your ability to work with a large search space. Part 0, 0 points: Look at the instructions below to organize your code to simplify the submission process. Part 1, 0 points: Add a JavaDoc comment header to describe your project and list who is in your team. Additionally, add a method to your class,
Part 2, 0 points: Create a SaddlebagBalancer.java file, you will add a static method, The different numbers are an indication of which side of the partition you have placed each element. (I.e., which saddlebag you're putting each package in; 0 for left and 1 for right.) For example, if the method is given the list [1, 2, 3, 4], you should return either [0, 1, 1, 0] or [1, 0, 0, 1] (as a List). You are welcome to write any other methods or classes, so long as they are included in your single Java file. You may not use any packages outside of the standard Java 8 libraries.Part 3, 0 points: You'll need these files in order to run the tester: Part 4, 100 points: Your grade will be based on the longest lists you can successfully partition in a restricted amount of time. Here is SaddlebagBalancerTester.java, which will test your code on increasingly larger lists. It may not be able to test the validity of your code; you may want to add that in yourself. (If you submit it to me, I will be able to check the validity.) Important notes:
Part 5, 0 points: In order to solve this problem you (essentially) need to test every possible division of elements into the two sublists. That is an exponential number of possible divisions. The tricky part of this is to go through all possibilities in a (relatively) efficient way, and then test them to find one that works. Part 6, 0 points: I expect that you'll need to use multiple threads to earn maximum points in the project. Hint: the computer I'm grading on has 16 CPUS. Submitting your Project: The files I'm looking for in this project are:
|