[PR #538] [MERGED] Resolved PR #532 #960

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/538
Author: @shubhamsah
Created: 5/23/2020
Status: Merged
Merged: 5/28/2020
Merged by: @deadshotsb

Base: masterHead: master


📝 Commits (10+)

  • 8ac3f2a Create AscendingPriorityQueue.c
  • 1494474 Delete APQ.C
  • 9ed17fc Create Ascending Priority Queue
  • 2357e8b Create MergeNR.c
  • 23df4b5 Update File
  • a652d51 Update AscendingPriorityQueue.c
  • 2bdf773 Update MERGENR.C
  • 2a4fd0b Update and rename ascendingPriorityQueue.c to ascendingpriorityqueue.c
  • f4cbdd3 Update and rename MERGENR.C to merge_sort_nr.c
  • b86a474 Create queue_linked_list.c

📊 Changes

3 files changed (+545 additions, -0 deletions)

View changed files

data_structures/linked_list/ascendingpriorityqueue.c (+286 -0)
data_structures/linked_list/queue_linked_list.c (+149 -0)
sorting/merge_sort_nr.c (+110 -0)

📄 Description

No description provided


🔄 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/538 **Author:** [@shubhamsah](https://github.com/shubhamsah) **Created:** 5/23/2020 **Status:** ✅ Merged **Merged:** 5/28/2020 **Merged by:** [@deadshotsb](https://github.com/deadshotsb) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`8ac3f2a`](https://github.com/TheAlgorithms/C/commit/8ac3f2a609d2b7d3f508e84f4cd130da1e5f19c7) Create AscendingPriorityQueue.c - [`1494474`](https://github.com/TheAlgorithms/C/commit/1494474db6e6167a4fee3e5127a4525835971dad) Delete APQ.C - [`9ed17fc`](https://github.com/TheAlgorithms/C/commit/9ed17fc3c9c3ac4f7572cb266671894c67b57a30) Create Ascending Priority Queue - [`2357e8b`](https://github.com/TheAlgorithms/C/commit/2357e8bd69076199d0af849479f4985086bf7545) Create MergeNR.c - [`23df4b5`](https://github.com/TheAlgorithms/C/commit/23df4b58d8e247a282b00d6e38973840c1a3ea40) Update File - [`a652d51`](https://github.com/TheAlgorithms/C/commit/a652d51791fa0eeeb900bff776dec1bd5dc51d73) Update AscendingPriorityQueue.c - [`2bdf773`](https://github.com/TheAlgorithms/C/commit/2bdf7732d8e3a2e315f2a57d2493ea299239d0cb) Update MERGENR.C - [`2a4fd0b`](https://github.com/TheAlgorithms/C/commit/2a4fd0b735711aeaafbeb5d6352ec9dbb9863d36) Update and rename ascendingPriorityQueue.c to ascendingpriorityqueue.c - [`f4cbdd3`](https://github.com/TheAlgorithms/C/commit/f4cbdd39cf846583ec179b2bea143e748a38486f) Update and rename MERGENR.C to merge_sort_nr.c - [`b86a474`](https://github.com/TheAlgorithms/C/commit/b86a4747ca0bee5498b6035beb3ec1bcd74a5398) Create queue_linked_list.c ### 📊 Changes **3 files changed** (+545 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/linked_list/ascendingpriorityqueue.c` (+286 -0) ➕ `data_structures/linked_list/queue_linked_list.c` (+149 -0) ➕ `sorting/merge_sort_nr.c` (+110 -0) </details> ### 📄 Description _No description provided_ --- <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:16:28 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#960