Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C code please! ***Please provide the correct code with taking input and give the output as given in the image only. If correct code with
C code please! ***Please provide the correct code with taking input and give the output as given in the image only. If correct code with the same required output is provided then I will Upvote for sure or else I will downvote. Thank You....
Write a C program for the following problem. There are n items in the suitcase of a traveler. On boarding the flight, the airline company told him that his suitcase is over weight than the allowed capacity W and asked him to deload some items and not to carry more than W. He knows weight of each item. Devise an algorithm to find out which items to be discarded so that he can carry max. weight W. (assume the weight of the suitcase is ignored). Note: The objective here is that he must carry maximum items. For example Weights of items : 532 1 W=6 Output: 0111 Weights of items : 20 12 10 7 5 W=27 Output: 00111 Note: Read number of items, knapsack capacity and weights of items from the user. Print the solution. For example: Input Result 4 0 1 1 1 6 5 3 2 1 5 0 0 1 1 1 27 20 12 10 7 5Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started