[PR #419] [MERGED] KMP algorithm implementation for string search #796

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/419
Author: @shubhamdp
Created: 10/16/2019
Status: Merged
Merged: 10/17/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (1)

  • 5461319 KMP algorithm implementation for string search

📊 Changes

2 files changed (+106 additions, -1 deletions)

View changed files

📝 leetcode/README.md (+2 -1)
leetcode/src/28.c (+104 -0)

📄 Description

Adding KMP algorithm implementation for searching pattern in string
leetcode problem no: 28

#249


🔄 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/419 **Author:** [@shubhamdp](https://github.com/shubhamdp) **Created:** 10/16/2019 **Status:** ✅ Merged **Merged:** 10/17/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`5461319`](https://github.com/TheAlgorithms/C/commit/54613199a6d04b1f0b170725e07129288a7c9670) KMP algorithm implementation for string search ### 📊 Changes **2 files changed** (+106 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `leetcode/README.md` (+2 -1) ➕ `leetcode/src/28.c` (+104 -0) </details> ### 📄 Description Adding KMP algorithm implementation for searching pattern in string leetcode problem no: 28 #249 --- <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:15:22 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#796