[PR #647] [MERGED] insertion_sort_recursive #1115

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/647
Author: @itsvinayak
Created: 10/4/2020
Status: Merged
Merged: 10/16/2020
Merged by: @kvedala

Base: masterHead: master


📝 Commits (9)

📊 Changes

1 file changed (+71 additions, -0 deletions)

View changed files

sorting/insertion_sort_recursive.c (+71 -0)

📄 Description

Description of Change

Adding algo for insertion sort using recursive

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/647 **Author:** [@itsvinayak](https://github.com/itsvinayak) **Created:** 10/4/2020 **Status:** ✅ Merged **Merged:** 10/16/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (9) - [`876dab2`](https://github.com/TheAlgorithms/C/commit/876dab2f55c59ac0f0e858f5eb20adff6174e5a8) insertion_sort_recursive - [`138429d`](https://github.com/TheAlgorithms/C/commit/138429d15e05d1ffebed39ada76438f52434c1ce) feat: add insertion sort recursive algorithm - [`265de52`](https://github.com/TheAlgorithms/C/commit/265de52f3043c81d3679bcd82c4ecfd4ab265177) Merge branch 'master' of https://github.com/itsvinayak/C - [`ebd60a9`](https://github.com/TheAlgorithms/C/commit/ebd60a961a13fc42965c11170e6c6f37c5fafd9a) Update sorting/insertion_sort_recursive.c - [`af089f5`](https://github.com/TheAlgorithms/C/commit/af089f5afccd94189894c8ccfee67849941d390b) Update sorting/insertion_sort_recursive.c - [`c507969`](https://github.com/TheAlgorithms/C/commit/c5079697f1849949b72ed51f60af3858207610ba) Update insertion_sort_recursive.c - [`49cf35e`](https://github.com/TheAlgorithms/C/commit/49cf35e274a26234a03b80ca5ed3de380f238c4d) Update sorting/insertion_sort_recursive.c - [`1c7fe25`](https://github.com/TheAlgorithms/C/commit/1c7fe255e7b25ce93417c2323f19ee78c95fe963) Update sorting/insertion_sort_recursive.c - [`aa2a972`](https://github.com/TheAlgorithms/C/commit/aa2a9727a4f1f8e9a6df079eee1bc3eae03cdcd5) Update sorting/insertion_sort_recursive.c ### 📊 Changes **1 file changed** (+71 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `sorting/insertion_sort_recursive.c` (+71 -0) </details> ### 📄 Description #### Description of Change Adding algo for insertion sort using recursive <!-- 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 --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/647"><img src="https://gitpod.io/api/apps/github/pbs/github.com/itsvinayak/C.git/aa2a9727a4f1f8e9a6df079eee1bc3eae03cdcd5.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:17:41 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1115