Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please sir , just in C# software Using the C# software, please answer the following: Write a program to solve the Knapsack problem using backtracking

image text in transcribed

please sir , just in C# software

Using the C# software, please answer the following: Write a program to solve the Knapsack problem using backtracking algorithm. Your code should contain a method called Knapsack, the method takes two parameters, the first is a 2xN array of integers that represents the items and their weight and value and the second is an integer that represents the maximum weight of the knapsack. Assume that the initial state is an empty Knapsack, and the actions are putting objects in the Knapsack and if the weight of selected items exceeds the total weight then you have to backtrack. Your method should print (on the screen) three lines: The first one represent the chosen items(indices), the second line gives the total weight of the selected items and the last one represent the total value of the selected items. An example: weight 73 9 12 10 value 434 7 8 total weight 20 Output: 401 20 15 Your code should run in real time. (Hint: the order in which you select the actions will affect the run time)

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

Larry Ellison Database Genius Of Oracle

Authors: Craig Peters

1st Edition

0766019748, 978-0766019744

More Books

Students also viewed these Databases questions