[PR #149] [MERGED] Added Stooge Sort and Radix Sort in sorting algorithms #383

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/149
Author: @Aruj-Sharma
Created: 10/2/2018
Status: Merged
Merged: 10/30/2019
Merged by: @ashwek

Base: masterHead: master


📝 Commits (7)

  • 2d75886 Create StoogeSort.c
  • ab03443 Update README.md
  • 234f680 Create RadixSort.c
  • 6639516 Update README.md
  • 5e9189b Rename Sorts/StoogeSort.c to sorting/StoogeSort.c
  • f8a5c14 Rename Sorts/RadixSort.c to sorting/radix_sort.c
  • c385a79 Merge branch 'master' into master

📊 Changes

3 files changed (+113 additions, -0 deletions)

View changed files

📝 README.md (+2 -0)
sorting/StoogeSort.c (+37 -0)
sorting/radix_sort.c (+74 -0)

📄 Description

Added stooge sort and updated readme.


🔄 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/149 **Author:** [@Aruj-Sharma](https://github.com/Aruj-Sharma) **Created:** 10/2/2018 **Status:** ✅ Merged **Merged:** 10/30/2019 **Merged by:** [@ashwek](https://github.com/ashwek) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (7) - [`2d75886`](https://github.com/TheAlgorithms/C/commit/2d75886f46151b3899893fa0f7973946f16f8a4f) Create StoogeSort.c - [`ab03443`](https://github.com/TheAlgorithms/C/commit/ab034437bab92a688c38c48fd266e47c3a255f60) Update README.md - [`234f680`](https://github.com/TheAlgorithms/C/commit/234f68093f4e93346a8859ae57d398b628fae5ca) Create RadixSort.c - [`6639516`](https://github.com/TheAlgorithms/C/commit/66395160820b749c4e8be46d22e1fa92312db8ff) Update README.md - [`5e9189b`](https://github.com/TheAlgorithms/C/commit/5e9189be5d4be4bfea3ab7a5dbfde82476bbb43f) Rename Sorts/StoogeSort.c to sorting/StoogeSort.c - [`f8a5c14`](https://github.com/TheAlgorithms/C/commit/f8a5c1485211c6991ba1cc7403c69cc0120e2ec8) Rename Sorts/RadixSort.c to sorting/radix_sort.c - [`c385a79`](https://github.com/TheAlgorithms/C/commit/c385a79149137eb9636cd3865854e78d2ff0a48f) Merge branch 'master' into master ### 📊 Changes **3 files changed** (+113 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -0) ➕ `sorting/StoogeSort.c` (+37 -0) ➕ `sorting/radix_sort.c` (+74 -0) </details> ### 📄 Description Added stooge sort and updated readme. --- <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:12:18 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#383