Lucifer39 / Code-dump

Miscellaneous codes
MIT License
3 stars 15 forks source link

Added Solution to MCM problem in C. #21

Closed Srinjoycode closed 3 years ago

Srinjoycode commented 3 years ago

Solved the Matrix Chain Multiplication problem using Dynamic Programming in the C language.

MCM PROBLEM

Given a sequence of matrices, find the most efficient way to multiply these matrices together. The problem is not actually to perform the multiplications, but merely to decide in which order to perform the multiplications.

Srinjoycode commented 3 years ago

@Lucifer39 Could you please check my pull request and merge it or provide feedback.