Are you a programming enthusiast looking to stay ahead of the curve in 2023? With the ever-evolving tech landscape, keeping up with the Best Programming Language to learn can be a daunting task. Fear not, as we have compiled a list of the top 10 Programming Languages that you should consider learning in 2023. Python: This versatile language continues to dominate in 2023, with its ease of use, readability, and a vast library of modules. JavaScript: As web development grows increasingly popular, JavaScript remains a crucial player, with its ability to create dynamic and interactive web pages. Java: This language has stood the test of time and remains a popular choice for enterprise software development. C++: A staple in the gaming and systems development industries, C++ offers exceptional performance and memory management. Swift: Apple's preferred language for iOS app development, Swift continues to grow in popularity with its simplicity and reliability. R: As data science and machin
Fractional Knapsack Problem | DAA
- Get link
- Other Apps
Fractional Knapsack Problem
A thief has a bag or knapsack that can contain the maximum weight W of his loot. There are n items and the weight of an ith item is wi and it worth vi. Any amount of item can be put into the bag i.e. xi fraction of item can be collected, where 0<=xi<=1. Here the objective is to collect the items that maximize the total profit earned.
Here we arrange the items by ratio vi/wi.
Algorithm
GreedyFracKnapsack(W, n)
{
for (i = 1; i <= n; i++)
{
x[i] = 0.0;
}
tempW = W;
for (i = 1; i <= n; i++)
{
if (w[i] > tempW)
then break;
x[i] = 1.0;
tempW -= w[i];
}
if (i <= n)
x[i] = tempW / w[i];
}
We can see that the above algorithm just contains a single loop i.e. no nested loops the running time
for the above algorithm is O(n). However our requirement is that v[1 ... n] and w[1 ... n] are sorted,
so we can use the sorting method to sort it in O(n log n) time such that the complexity of the algorithm above including sorting becomes O(n log n).
Example: Consider five items along with their respective weights and values,
I = {I1, I2, I3, I4, I5}
w = {5, 10, 20, 30, 40}
v = {30, 20, 100, 90, 160}
The knapsack has a capacity of W=60, then find optimal profit earned by using a fractional knapsack.
Solution:
Step 1: Initially
Items |
Wi |
Vi |
I1 |
5 |
30 |
I2 |
10 |
20 |
I3 |
20 |
100 |
I4 |
30 |
90 |
I5 |
40 |
160 |
Step 2: Calculate vi/wi as,
Items |
Wi |
Vi |
Pi=vi/wi |
I1 |
5 |
30 |
6.0 |
I2 |
10 |
20 |
2.0 |
I3 |
20 |
100 |
5.0 |
I4 |
30 |
90 |
3.0 |
I5 |
40 |
160 |
4.0 |
Step 3: Arranging the items with decreasing order of Pi as,
Items |
Wi |
Vi |
Pi=vi/wi |
I1 |
5 |
30 |
6.0 |
I3 |
20 |
100 |
5.0 |
I5 |
40 |
160 |
4.0 |
I4 |
30 |
90 |
3.0 |
I2 |
10 |
20 |
2.0 |
Now filling the knapsack according to decreasing value of Pi
Maximum value= v1+v2+new(v3) = 30+100+140=270
- Get link
- Other Apps
Popular posts from this blog
C program to Find Cartesian Product of Two Sets | C programming
C program to find the Cartesian Product of two sets Cartesian product is a mathematical operation that returns a set (or product set or simply product ) from multiple sets. That is, for sets A and B , the Cartesian product A × B is the set of all ordered pairs ( a , b ) where a ∈ A and b ∈ B . Products can be specified using set-builder notation, e.g. {\displaystyle A\times B=\{\,(a,b)\mid a\in A\ {\mbox{ and }}\ b\in B\,\}.}
Array in C Programming | C Programming
Array in C Array in C Programming The C language provides a capability that enables the user to define a set of ordered data items known as an array. Suppose we had a set of grades that we wished to read into the computer and suppose we wished to perform some operations on these grades, we will quickly realize that we cannot perform such an operation until each and every grade has been entered since it would be quite a tedious task to declare each and every student grade as a variable especially since there may be a very large number. In C we can define a variable called grade, which represents not a single value of grade but an entire set of grades. Each element of the set can then be referenced by means of a number called an index number or subscript. Declaration of arrays Like any other variable arrays must be declared before they are used. The general form of declaration is: type variable-name [50]; The type specifies the type of the elements that will be contained in the array,
Comments
Post a Comment
Subscribe Us and Thanks for visiting blog.