[PR #574] [MERGED] Bubble sort recursion #1004

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/574
Author: @realDuYuanChao
Created: 7/19/2020
Status: Merged
Merged: 7/21/2020
Merged by: @kvedala

Base: masterHead: patch-3


📝 Commits (3)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
sorting/bubble_sort_recursion.c (+78 -0)

📄 Description

Description of Change

Bubble sort algorithm implments using recursion

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/574 **Author:** [@realDuYuanChao](https://github.com/realDuYuanChao) **Created:** 7/19/2020 **Status:** ✅ Merged **Merged:** 7/21/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `patch-3` --- ### 📝 Commits (3) - [`538a295`](https://github.com/TheAlgorithms/C/commit/538a2951a915c6b2be691c574df9d4c40ccc969a) bubble sort by recursion - [`d0de99a`](https://github.com/TheAlgorithms/C/commit/d0de99adfe9ce4f75fc5b1247915729335a6f615) updating DIRECTORY.md - [`9728ca7`](https://github.com/TheAlgorithms/C/commit/9728ca7f51eac8b57ba43e9d5a495f244710ca49) fix compile error ### 📊 Changes **2 files changed** (+79 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `sorting/bubble_sort_recursion.c` (+78 -0) </details> ### 📄 Description #### Description of Change Bubble sort algorithm implments using recursion #### 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-Plus-Plus/blob/master/CONTRIBUTING.md#New-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-Plus-Plus/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/574"><img src="https://gitpod.io/api/apps/github/pbs/github.com/shellhub/C.git/9728ca7f51eac8b57ba43e9d5a495f244710ca49.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:16:46 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1004