[PR #855] [MERGED] feat: Odd Even Sorting Algorithm #1364

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/855
Author: @eddybruv
Created: 9/8/2021
Status: Merged
Merged: 9/10/2021
Merged by: @Panquesito7

Base: masterHead: master


📝 Commits (10+)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
sorting/odd_even_sort.c (+120 -0)

📄 Description

Description of Change

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/855 **Author:** [@eddybruv](https://github.com/eddybruv) **Created:** 9/8/2021 **Status:** ✅ Merged **Merged:** 9/10/2021 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`8f245d5`](https://github.com/TheAlgorithms/C/commit/8f245d545a08da4b01805d8814a041762937979f) Odd Even Sorting Algorithm - [`8dcfc79`](https://github.com/TheAlgorithms/C/commit/8dcfc79d741c478fb5f0c490011ef3f244491edb) added Odd Even Sort algorithm - [`58e58af`](https://github.com/TheAlgorithms/C/commit/58e58af8a0bcb602de452a345ff0b22052a655ec) Odd Even sort algorithm - [`6ec1c7d`](https://github.com/TheAlgorithms/C/commit/6ec1c7d6b9c378f795bf8fe4bfae800c1abb4471) Apply suggestions from code review - [`93c364f`](https://github.com/TheAlgorithms/C/commit/93c364fb5e2761e6477264244544c806885d0315) updating DIRECTORY.md - [`e85ec3c`](https://github.com/TheAlgorithms/C/commit/e85ec3c960da2ea21cf7810e53ee12e95d067057) Update odd_even_sort.c - [`b993bf3`](https://github.com/TheAlgorithms/C/commit/b993bf3e4656eae9caab8ce310c17be929ba2ee3) update Odd Even sort - [`06210cf`](https://github.com/TheAlgorithms/C/commit/06210cf3e2697e6300ca56ad3babb98dea2f971d) Update sorting/odd_even_sort.c - [`141e0d0`](https://github.com/TheAlgorithms/C/commit/141e0d031edfd2f71dbb94fd00ef18759f9bbc2f) Update sorting/odd_even_sort.c - [`047e3c8`](https://github.com/TheAlgorithms/C/commit/047e3c81719da2ddc41d9265d2892e12f5b2749e) Update odd_even_sort.c ### 📊 Changes **2 files changed** (+121 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `sorting/odd_even_sort.c` (+120 -0) </details> ### 📄 Description #### Description of Change <!-- 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/855"><img src="https://gitpod.io/button/open-in-gitpod.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:19:47 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1364