[PR #809] [MERGED] feat: created heap_sort_2.c #1326

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/809
Author: @DhruvPasricha
Created: 3/6/2021
Status: Merged
Merged: 3/12/2021
Merged by: @ayaankhan98

Base: masterHead: master


📝 Commits (10+)

  • e194b2d feat: created heap_sort_2.c
  • 912bdd4 Update sorting/heap_sort_2.c
  • c7a0106 Update sorting/heap_sort_2.c
  • 771e78b Update sorting/heap_sort_2.c
  • fea4153 Update sorting/heap_sort_2.c
  • 8770eb5 Update sorting/heap_sort_2.c
  • a0db457 Update sorting/heap_sort_2.c
  • 13ab55a updating DIRECTORY.md
  • 2f3d356 added deatiled description of the algorithm
  • d362dea Update sorting/heap_sort_2.c

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
sorting/heap_sort_2.c (+156 -0)

📄 Description

Created heap_sort_2.c

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.

🔄 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/809 **Author:** [@DhruvPasricha](https://github.com/DhruvPasricha) **Created:** 3/6/2021 **Status:** ✅ Merged **Merged:** 3/12/2021 **Merged by:** [@ayaankhan98](https://github.com/ayaankhan98) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`e194b2d`](https://github.com/TheAlgorithms/C/commit/e194b2dfcd13c3e861288240ccfa644a2a7cf28c) feat: created heap_sort_2.c - [`912bdd4`](https://github.com/TheAlgorithms/C/commit/912bdd482f9df46b74542f6e8e55b8dde0d705e7) Update sorting/heap_sort_2.c - [`c7a0106`](https://github.com/TheAlgorithms/C/commit/c7a01069f976f7c33b1bdff3889ef504582e8c32) Update sorting/heap_sort_2.c - [`771e78b`](https://github.com/TheAlgorithms/C/commit/771e78bcd181320749ee89fc0b15ef5be2c2c532) Update sorting/heap_sort_2.c - [`fea4153`](https://github.com/TheAlgorithms/C/commit/fea41535a405771758d90729734b49c9a56ed171) Update sorting/heap_sort_2.c - [`8770eb5`](https://github.com/TheAlgorithms/C/commit/8770eb5528934b437c7e566b0e346fa76ed00e61) Update sorting/heap_sort_2.c - [`a0db457`](https://github.com/TheAlgorithms/C/commit/a0db45764d29ffd673b4092b810222178d6311b9) Update sorting/heap_sort_2.c - [`13ab55a`](https://github.com/TheAlgorithms/C/commit/13ab55a93db32b011195d3572b61e655061a220c) updating DIRECTORY.md - [`2f3d356`](https://github.com/TheAlgorithms/C/commit/2f3d3563dd7f16e3569f2edd1afaef25d095b275) added deatiled description of the algorithm - [`d362dea`](https://github.com/TheAlgorithms/C/commit/d362dea6e99245aa3d5ed2d8d9371549ef3f93e4) Update sorting/heap_sort_2.c ### 📊 Changes **2 files changed** (+157 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `sorting/heap_sort_2.c` (+156 -0) </details> ### 📄 Description #### Created heap_sort_2.c <!-- 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 --> #### 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. --- <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:19 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1326