[PR #834] [CLOSED] feat: Create LCS.c #1347

Open
opened 2026-01-29 15:19:34 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/834
Author: @Santoshjonnakuti
Created: 5/25/2021
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+3 -0)
dynamic_programming/longest_common_subsequence.cpp (+295 -0)

📄 Description

Added LCS algorithm

Description of Change

Added Longest common subsequence 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: feat: Add LCS Algorithm


🔄 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/834 **Author:** [@Santoshjonnakuti](https://github.com/Santoshjonnakuti) **Created:** 5/25/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`5426f2e`](https://github.com/TheAlgorithms/C/commit/5426f2e843b5278de53b3017f0eb355d58c015c3) Create LCS.c - [`bc6a2d1`](https://github.com/TheAlgorithms/C/commit/bc6a2d10e2f54ec4339ae66af132fce008872a4d) Update LCS.c - [`a798b5c`](https://github.com/TheAlgorithms/C/commit/a798b5c42f775a75c4d8f0b2e0e214e607f58d63) Update dynamic_programming/LCS.c - [`6e20315`](https://github.com/TheAlgorithms/C/commit/6e203154492821dde69f9006c0d41355f469ba91) formatting filenames a798b5c4 - [`e4ef142`](https://github.com/TheAlgorithms/C/commit/e4ef1423b6834d574b44f7d405de79332b94d4f5) updating DIRECTORY.md - [`c692f8d`](https://github.com/TheAlgorithms/C/commit/c692f8d1fba7065fd1c92543549b637585c5df64) Update and rename lcs.c to longest_common_subsequence.cpp - [`ef98280`](https://github.com/TheAlgorithms/C/commit/ef98280cdf569ff81f8a7beafdceddd196363018) updating DIRECTORY.md - [`8549151`](https://github.com/TheAlgorithms/C/commit/854915172fdbb8393fd9231b84a17a05a809d61b) Update longest_common_subsequence.cpp - [`508e920`](https://github.com/TheAlgorithms/C/commit/508e9208f96bbcb0ff9ee02ec3619cbd1e599651) docs: add comments to LCS algorithm - [`f91d818`](https://github.com/TheAlgorithms/C/commit/f91d81861a911ffb3db9a518a2898cd95a6045a5) Update longest_common_subsequence.cpp ### 📊 Changes **2 files changed** (+298 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+3 -0) ➕ `dynamic_programming/longest_common_subsequence.cpp` (+295 -0) </details> ### 📄 Description Added LCS algorithm #### Description of Change Added Longest common subsequence 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: feat: Add LCS Algorithm <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/834"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <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:19:34 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1347