FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-3/algorithms/dynamic-programming/knapsack.py at master · iCodeIN/python-3 · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
iCodeIN
/
python-3
Public
forked from
AllAlgorithms/python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-3
/
algorithms
/
dynamic-programming
/
knapsack.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (20 loc) · 711 Bytes
Breadcrumbs
python-3
/
algorithms
/
dynamic-programming
/
knapsack.py
Copy path
File metadata and controls
23 lines (20 loc) · 711 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# A Dynamic Programming based Python Program for 0-1 Knapsack problem
# Returns the maximum value that can be put in a knapsack of capacity W
def
knapSack
(
W
,
wt
,
val
,
n
):
K
=
[[
0
for
x
in
range
(
W
+
1
)]
for
x
in
range
(
n
+
1
)]
# Build table K[][] in bottom up manner
for
i
in
range
(
n
+
1
):
for
w
in
range
(
W
+
1
):
if
i
==
0
or
w
==
0
:
K
[
i
][
w
]
=
0
elif
wt
[
i
-
1
]
<=
w
:
K
[
i
][
w
]
=
max
(
val
[
i
-
1
]
+
K
[
i
-
1
][
w
-
wt
[
i
-
1
]],
K
[
i
-
1
][
w
])
else
:
K
[
i
][
w
]
=
K
[
i
-
1
][
w
]
return
K
[
n
][
W
]
# Driver program to test above function
val
=
[
60
,
100
,
120
]
wt
=
[
10
,
20
,
30
]
W
=
50
n
=
len
(
val
)
print
(
knapSack
(
W
,
wt
,
val
,
n
))
Back
|
FazBrowse Home
|
New Git URL