[PR #212] [MERGED] Formulate codes in Sort #492

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/212
Author: @sungbin
Created: 11/11/2018
Status: Merged
Merged: 12/9/2018
Merged by: @yanglbme

Base: masterHead: master


📝 Commits (4)

  • bc1c15e Change SelectionSort.c format
  • edf4007 Change BubbleSort.c format
  • 72de3a6 Change InsertionSort.c format
  • a498bf1 Better ome comments

📊 Changes

3 files changed (+162 additions, -147 deletions)

View changed files

📝 sorting/BubbleSort.c (+52 -30)
📝 sorting/InsertionSort.c (+47 -29)
📝 sorting/SelectionSort.c (+63 -88)

📄 Description

The codes in sorting have different forms.
I formulated BubbleSort.c, InsertionSort.c, SelectionSort.c by QuickSort.c


🔄 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/212 **Author:** [@sungbin](https://github.com/sungbin) **Created:** 11/11/2018 **Status:** ✅ Merged **Merged:** 12/9/2018 **Merged by:** [@yanglbme](https://github.com/yanglbme) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`bc1c15e`](https://github.com/TheAlgorithms/C/commit/bc1c15e24fe85de363b61d2e28218bb042e45174) Change SelectionSort.c format - [`edf4007`](https://github.com/TheAlgorithms/C/commit/edf400739c3b52ae5bbb0da5d8da9e67ffee6a74) Change BubbleSort.c format - [`72de3a6`](https://github.com/TheAlgorithms/C/commit/72de3a6ca826525b9cce87f367f81daffea246bf) Change InsertionSort.c format - [`a498bf1`](https://github.com/TheAlgorithms/C/commit/a498bf1de91974a0dafb845e205bfff130eea503) Better ome comments ### 📊 Changes **3 files changed** (+162 additions, -147 deletions) <details> <summary>View changed files</summary> 📝 `sorting/BubbleSort.c` (+52 -30) 📝 `sorting/InsertionSort.c` (+47 -29) 📝 `sorting/SelectionSort.c` (+63 -88) </details> ### 📄 Description The codes in sorting have different forms. I formulated BubbleSort.c, InsertionSort.c, SelectionSort.c by QuickSort.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:13:14 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#492