这篇文章直接挑战Science paper了,有意思# Biology - 生物学
F*r
1 楼
矩阵链式相乘加括号,生成所有legal的combination.
according to Introduction to algorithms, A1*A2*A3*A4只有5种legal output:
(A1(A2(A3A4)))
(A1((A2A3)A4))
((A1A2)(A3A4))
((A1(A2A3))A4)
(((A1A2)A3)A4)
想了很久不知道怎么能方便的break down,而且这个加括号的rule到底是什么呢?
according to Introduction to algorithms, A1*A2*A3*A4只有5种legal output:
(A1(A2(A3A4)))
(A1((A2A3)A4))
((A1A2)(A3A4))
((A1(A2A3))A4)
(((A1A2)A3)A4)
想了很久不知道怎么能方便的break down,而且这个加括号的rule到底是什么呢?