[PR #806] [MERGED] feat: added selection_sort_recursive.c #1320

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/806
Author: @DhruvPasricha
Created: 2/24/2021
Status: Merged
Merged: 3/2/2021
Merged by: @ayaankhan98

Base: masterHead: master


📝 Commits (10+)

  • 98a1b14 added selection_sort_recursive.c
  • f894ff2 Update sorting/selection_sort_recursive.c
  • 18a9974 Update sorting/selection_sort_recursive.c
  • 33f9f85 Update sorting/selection_sort_recursive.c
  • 63aded1 Update sorting/selection_sort_recursive.c
  • f8c9ea0 Update sorting/selection_sort_recursive.c
  • 6c874bd Update sorting/selection_sort_recursive.c
  • 08cf618 Update sorting/selection_sort_recursive.c
  • 7b23edb Update sorting/selection_sort_recursive.c
  • 1c777cb Update sorting/selection_sort_recursive.c

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
sorting/selection_sort_recursive.c (+109 -0)

📄 Description

added selection_sort_recursive.c

  • 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.

🔄 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/806 **Author:** [@DhruvPasricha](https://github.com/DhruvPasricha) **Created:** 2/24/2021 **Status:** ✅ Merged **Merged:** 3/2/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`98a1b14`](https://github.com/TheAlgorithms/C/commit/98a1b14242e18a6e0ab11b083e08ca9e0f45033f) added selection_sort_recursive.c - [`f894ff2`](https://github.com/TheAlgorithms/C/commit/f894ff2ac32c11362caebb73c529d360411cfb5e) Update sorting/selection_sort_recursive.c - [`18a9974`](https://github.com/TheAlgorithms/C/commit/18a9974a0cf2ea0c2cec4214ab899c7f5a91f335) Update sorting/selection_sort_recursive.c - [`33f9f85`](https://github.com/TheAlgorithms/C/commit/33f9f8512274fca6c6ac8255f756b24384407d56) Update sorting/selection_sort_recursive.c - [`63aded1`](https://github.com/TheAlgorithms/C/commit/63aded1eccbc549c84821552554da69e9079e702) Update sorting/selection_sort_recursive.c - [`f8c9ea0`](https://github.com/TheAlgorithms/C/commit/f8c9ea04f92b71f08b2882eb006ac665c1f22255) Update sorting/selection_sort_recursive.c - [`6c874bd`](https://github.com/TheAlgorithms/C/commit/6c874bd7cd178102cc57a0d238f4267bfdd503a0) Update sorting/selection_sort_recursive.c - [`08cf618`](https://github.com/TheAlgorithms/C/commit/08cf618094e1a9a7d7e4699fab9ad8e3b8a27f3f) Update sorting/selection_sort_recursive.c - [`7b23edb`](https://github.com/TheAlgorithms/C/commit/7b23edbfd6775f30e313776d9d28fff7ba43b2f2) Update sorting/selection_sort_recursive.c - [`1c777cb`](https://github.com/TheAlgorithms/C/commit/1c777cbe999952ef4c10404d00c1ea18afab9e4f) Update sorting/selection_sort_recursive.c ### 📊 Changes **2 files changed** (+110 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `sorting/selection_sort_recursive.c` (+109 -0) </details> ### 📄 Description ### added selection_sort_recursive.c - [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. --- <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:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1320