[PR #1198] [MERGED] Add matrix chain order #1784

Closed
opened 2026-01-29 15:24:37 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1198
Author: @CascadingCascade
Created: 1/22/2023
Status: Merged
Merged: 2/3/2023
Merged by: @Panquesito7

Base: masterHead: master


📝 Commits (10+)

📊 Changes

2 files changed (+94 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+3 -0)
dynamic_programming/matrix_chain_order.c (+91 -0)

📄 Description

Description of Change

Add a matrix chain order algorithm

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1198 **Author:** [@CascadingCascade](https://github.com/CascadingCascade) **Created:** 1/22/2023 **Status:** ✅ Merged **Merged:** 2/3/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`0e4ddbf`](https://github.com/TheAlgorithms/C/commit/0e4ddbf004960b4325c46ef765ad44a44f35edb6) feat: add Matrix Chain Order - [`ba23895`](https://github.com/TheAlgorithms/C/commit/ba238955b0ab7622b4b8ecb577f1474f90c1fc2b) Merge branch 'master' of https://github.com/CascadingCascade/C - [`8df6676`](https://github.com/TheAlgorithms/C/commit/8df6676e4013e02391a9f63ce6dbb9e53e6871ac) updating DIRECTORY.md - [`a9458c3`](https://github.com/TheAlgorithms/C/commit/a9458c34385857f1e3eeae6456cbeb5fdd4eef0a) Update dynamic_programming/matrix_chain_order.c - [`f829411`](https://github.com/TheAlgorithms/C/commit/f829411ecef3637f16d71fca2397be6c370b7f8a) Update dynamic_programming/matrix_chain_order.c - [`b49b81f`](https://github.com/TheAlgorithms/C/commit/b49b81fe90d705900a0105d3afdc9b952151db04) Update dynamic_programming/matrix_chain_order.c - [`9329ea1`](https://github.com/TheAlgorithms/C/commit/9329ea19199a1ff2bcc473fbc8b1cadefcd08861) Update matrix_chain_order.c - [`85c8cc3`](https://github.com/TheAlgorithms/C/commit/85c8cc38b6bbc99ff61538832041dfa9293349a7) chore: apply suggestions from code review - [`f9dff2e`](https://github.com/TheAlgorithms/C/commit/f9dff2ecea73ead2868585bb4bf74dc3e248cb24) Merge branch 'TheAlgorithms:master' into master - [`ce628b2`](https://github.com/TheAlgorithms/C/commit/ce628b2a04b640c9098b2e25c5e686dbc95d4ac5) chore: apply suggestions from code review ### 📊 Changes **2 files changed** (+94 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+3 -0) ➕ `dynamic_programming/matrix_chain_order.c` (+91 -0) </details> ### 📄 Description #### Description of Change Add a matrix chain order algorithm <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References <!-- Add any reference to previous pull-request or issue --> #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Added tests and example, test must pass - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:24:37 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1784