FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python/dynamic_programming/matrix_chain_order.py at master · wcfylcf/Python · GitHub
wcfylcf
/
Python
Public
forked from
TheAlgorithms/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
/
dynamic_programming
/
matrix_chain_order.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (41 loc) · 1.41 KB
Breadcrumbs
Python
/
dynamic_programming
/
matrix_chain_order.py
Copy path
File metadata and controls
46 lines (41 loc) · 1.41 KB
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from
__future__
import
print_function
import
sys
'''
Dynamic Programming
Implementation of Matrix Chain Multiplication
Time Complexity: O(n^3)
Space Complexity: O(n^2)
'''
def
MatrixChainOrder
(
array
):
N
=
len
(
array
)
Matrix
=
[[
0
for
x
in
range
(
N
)]
for
x
in
range
(
N
)]
Sol
=
[[
0
for
x
in
range
(
N
)]
for
x
in
range
(
N
)]
for
ChainLength
in
range
(
2
,
N
):
for
a
in
range
(
1
,
N
-
ChainLength
+
1
):
b
=
a
+
ChainLength
-
1
Matrix
[
a
][
b
]
=
sys
.
maxsize
for
c
in
range
(
a
,
b
):
cost
=
Matrix
[
a
][
c
]
+
Matrix
[
c
+
1
][
b
]
+
array
[
a
-
1
]
*
array
[
c
]
*
array
[
b
]
if
cost
<
Matrix
[
a
][
b
]:
Matrix
[
a
][
b
]
=
cost
Sol
[
a
][
b
]
=
c
return
Matrix
,
Sol
#Print order of matrix with Ai as Matrix
def
PrintOptimalSolution
(
OptimalSolution
,
i
,
j
):
if
i
==
j
:
print
(
"A"
+
str
(
i
),
end
=
" "
)
else
:
print
(
"("
,
end
=
" "
)
PrintOptimalSolution
(
OptimalSolution
,
i
,
OptimalSolution
[
i
][
j
])
PrintOptimalSolution
(
OptimalSolution
,
OptimalSolution
[
i
][
j
]
+
1
,
j
)
print
(
")"
,
end
=
" "
)
def
main
():
array
=
[
30
,
35
,
15
,
5
,
10
,
20
,
25
]
n
=
len
(
array
)
#Size of matrix created from above array will be
# 30*35 35*15 15*5 5*10 10*20 20*25
Matrix
,
OptimalSolution
=
MatrixChainOrder
(
array
)
print
(
"No. of Operation required: "
+
str
((
Matrix
[
1
][
n
-
1
])))
PrintOptimalSolution
(
OptimalSolution
,
1
,
n
-
1
)
if
__name__
==
'__main__'
:
main
()
Back
|
FazBrowse Home
|
New Git URL