[PR #521] [MERGED] Added Sorting Algorithms #941

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/521
Author: @Hiyabye
Created: 4/18/2020
Status: Merged
Merged: 4/19/2020
Merged by: @StepfenShawn

Base: masterHead: add_sort_algorithm


📝 Commits (4)

  • 489db12 Add new sorting algorithm
  • 63cdc6f Changed function name
  • 89732a2 Add new sorting algorithm (Cocktail Sort)
  • 6bc8c29 Increased spead of Cocktail Sort

📊 Changes

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

View changed files

sorting/Cocktail_Sort.c (+75 -0)
sorting/Pigeonhole_Sort.c (+73 -0)

📄 Description

I added some new sorting algorithms.

  1. Pigeonhole Sort
  2. Cocktail Sort

🔄 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/521 **Author:** [@Hiyabye](https://github.com/Hiyabye) **Created:** 4/18/2020 **Status:** ✅ Merged **Merged:** 4/19/2020 **Merged by:** [@StepfenShawn](https://github.com/StepfenShawn) **Base:** `master` ← **Head:** `add_sort_algorithm` --- ### 📝 Commits (4) - [`489db12`](https://github.com/TheAlgorithms/C/commit/489db12ac915bee07da4ac479a1b892d3c1879e5) Add new sorting algorithm - [`63cdc6f`](https://github.com/TheAlgorithms/C/commit/63cdc6fc64aa80e5376f76ef72551fcd8875113e) Changed function name - [`89732a2`](https://github.com/TheAlgorithms/C/commit/89732a21030f6d5ec48f493827e646232eabf4e7) Add new sorting algorithm (Cocktail Sort) - [`6bc8c29`](https://github.com/TheAlgorithms/C/commit/6bc8c294b256ae8abe391383edd429b33b13915c) Increased spead of Cocktail Sort ### 📊 Changes **2 files changed** (+148 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `sorting/Cocktail_Sort.c` (+75 -0) ➕ `sorting/Pigeonhole_Sort.c` (+73 -0) </details> ### 📄 Description I added some new sorting algorithms. 1. Pigeonhole Sort 2. Cocktail Sort --- <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:22 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#941