javavarshin-blog
javavarshin-blog
#JavaCodes
4 posts
Don't wanna be here? Send us removal request.
javavarshin-blog · 7 years ago
Photo
Tumblr media
#javacodessid Knapsack problem to find out max number of coins from the 2D array.
1 note · View note
javavarshin-blog · 7 years ago
Photo
Tumblr media
#javacodes #javaprogramming #javadeveloper #knapsackproblem Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack. In other words, given two integer arrays val[0..n-1] and wt[0..n-1] which represent values and weights associated with n items respectively. Also given an integer W which represents knapsack capacity, find out the maximum value subset of val[] such that sum of the weights of this subset is smaller than or equal to W. You cannot break an item, either pick the complete item, or don’t pick it (0-1 property).
0 notes
javavarshin-blog · 7 years ago
Photo
Tumblr media
#javacodes #javaprogramming #javadeveloper Java program to find the index of the element from the array using #LinearSearch .
0 notes
javavarshin-blog · 7 years ago
Photo
Tumblr media
#javacodes #javaprogramming #javadeveloper Java program to find out the index of the element from the array.
0 notes