[PR #227] [MERGED] Pattern Search #513

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/227
Author: @danghai
Created: 5/11/2019
Status: Merged
Merged: 5/12/2019
Merged by: @yanglbme

Base: masterHead: search


📝 Commits (4)

  • 4956500 Add naive search algorithm
  • bb7199d Add Rabin-Karp search algorithm
  • 25a225c Update rabin_karp_search.c
  • d970259 Update naive_search.c

📊 Changes

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

View changed files

searching/pattern_search/naive_search.c (+38 -0)
searching/pattern_search/rabin_karp_search.c (+65 -0)

📄 Description

I make PR for pattern search


🔄 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/227 **Author:** [@danghai](https://github.com/danghai) **Created:** 5/11/2019 **Status:** ✅ Merged **Merged:** 5/12/2019 **Merged by:** [@yanglbme](https://github.com/yanglbme) **Base:** `master` ← **Head:** `search` --- ### 📝 Commits (4) - [`4956500`](https://github.com/TheAlgorithms/C/commit/495650023b224c54c9f3ffff243ca8db2bbfdd4d) Add naive search algorithm - [`bb7199d`](https://github.com/TheAlgorithms/C/commit/bb7199d70649bb726c8fa687fe50c2023c9a1f6c) Add Rabin-Karp search algorithm - [`25a225c`](https://github.com/TheAlgorithms/C/commit/25a225c43445593c4879c33ab63b9d9a502afc48) Update rabin_karp_search.c - [`d970259`](https://github.com/TheAlgorithms/C/commit/d9702591a8eb3574acb547ada0f0f5b5f6ebef9f) Update naive_search.c ### 📊 Changes **2 files changed** (+103 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `searching/pattern_search/naive_search.c` (+38 -0) ➕ `searching/pattern_search/rabin_karp_search.c` (+65 -0) </details> ### 📄 Description I make PR for pattern search --- <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:13:23 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#513