[PR #1212] [MERGED] Add Patience Sort #1804

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1212
Author: @CascadingCascade
Created: 2/6/2023
Status: Merged
Merged: 2/20/2023
Merged by: @Panquesito7

Base: masterHead: master


📝 Commits (8)

📊 Changes

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

View changed files

📝 DIRECTORY.md (+4 -0)
sorting/patience_sort.c (+160 -0)

📄 Description

Description of Change

Add an implementation of Patience Sort

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:
Wikipedia link to this sorting algorithm


🔄 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/1212 **Author:** [@CascadingCascade](https://github.com/CascadingCascade) **Created:** 2/6/2023 **Status:** ✅ Merged **Merged:** 2/20/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (8) - [`16d3139`](https://github.com/TheAlgorithms/C/commit/16d31397d444ca63676d79f1740790a1d12d4c9c) updating DIRECTORY.md - [`ed26c05`](https://github.com/TheAlgorithms/C/commit/ed26c05d9bd50414e9d4fcb88920907689afdff3) updating DIRECTORY.md - [`2fb09e7`](https://github.com/TheAlgorithms/C/commit/2fb09e7bf1a51f626da3df64c30445bec0373176) Merge branch 'master' of https://github.com/CascadingCascade/C - [`a900893`](https://github.com/TheAlgorithms/C/commit/a900893d622a4a32207502cbea1cf0afd0cc64cd) feat: Add Patience Sort - [`130614b`](https://github.com/TheAlgorithms/C/commit/130614bc6e3f35f88b1b8a2d72ff40c331d7270b) updating DIRECTORY.md - [`5e996a6`](https://github.com/TheAlgorithms/C/commit/5e996a60f54117540638d3f47fc2b905bf654470) Update sorting/patience_sort.c - [`1f56373`](https://github.com/TheAlgorithms/C/commit/1f56373e4cc7a20c597f0dc561383a11797e50f9) Update sorting/patience_sort.c - [`e9828a1`](https://github.com/TheAlgorithms/C/commit/e9828a19d63b9af083ee83e9288283826815394e) Merge branch 'master' into master ### 📊 Changes **2 files changed** (+164 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+4 -0) ➕ `sorting/patience_sort.c` (+160 -0) </details> ### 📄 Description #### Description of Change Add an implementation of Patience Sort <!-- 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 --> [Wikipedia link to this sorting algorithm](https://en.wikipedia.org/wiki/Patience_sorting) --- <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:24:49 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1804