Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are given an array, weights, that contains the weights of some cargo items in pounds. You want to load a truck with items from

image text in transcribed
You are given an array, weights, that contains the weights of some cargo items in pounds. You want to load a truck with items from the list up to its capacity. The truck has a maximum capacity of 1,000 pounds. For this problem use a "dumb" algorithm. That is, start with the first item in the list and go through the items in order. loading each one if there is enough remaining capacity on the truck For example, if the weights were [ 400, 250, 700, 60, 300), you would load the 400-pound item, then the 250-pound item, then the 60- pound item, for a total of 710 pounds of cargo. This method does not find the best solution - we will improve on it in subsequent problems. The weights will be generated randomly, so you cannot hard-code the answer - you must write a general algorithm to do it Once the loading is complete, print a message indicating how many pounds of cargo were loaded onto the truck. NOTE. To satisfy the auto-grader, update the variable capacity so that it contains the remaining capacity of the truck. For example, if 943 pounds of cargo are loaded, capacity should be 57 Script Reset D MATLAB Documentation 1 %The weights of the cargo items are generated at random 4 weights - randi(500, 1, randi (10)) 7 capacity - 1800; %cargo capacity of the truck

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 11 The Database For Big Data And Analytics

Authors: Cristian Molaro, Surekha Parekh, Terry Purcell, Julian Stuhler

1st Edition

1583473858, 978-1583473856

More Books

Students also viewed these Databases questions