[PR #314] [MERGED] Added multikey quicksort #635

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/314
Author: @JianLoong
Created: 10/3/2019
Status: Merged
Merged: 10/3/2019
Merged by: @danghai

Base: masterHead: master


📝 Commits (1)

📊 Changes

1 file changed (+407 additions, -0 deletions)

View changed files

sorting/multikey_quicksort.c (+407 -0)

📄 Description

Wikipedia entry can be found here.

Official paper can be found here.

Based on demo program here.


🔄 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/314 **Author:** [@JianLoong](https://github.com/JianLoong) **Created:** 10/3/2019 **Status:** ✅ Merged **Merged:** 10/3/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`ffebcd5`](https://github.com/TheAlgorithms/C/commit/ffebcd5fdbf870c998a80bd5725c41bb2bc84442) Added multikey quicksort ### 📊 Changes **1 file changed** (+407 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `sorting/multikey_quicksort.c` (+407 -0) </details> ### 📄 Description Wikipedia entry can be found [here](https://en.wikipedia.org/wiki/Multi-key_quicksort). Official paper can be found [here.](https://www.cs.princeton.edu/~rs/strings/paper.pdf) Based on demo program [here.](https://www.cs.princeton.edu/~rs/strings/demo.c) --- <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:14:17 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#635