[PR #438] [CLOSED] Adding sortLinkedList and sortCircularDoubleLinkedList #824

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/438
Author: @gustoliveira
Created: 10/20/2019
Status: Closed

Base: masterHead: master


📝 Commits (3)

  • dba1a54 Adding a sortLinkedList
  • eae0db5 Adicionando lista ordenada para pull request
  • 44fa3db Adding circularDoubleLinkedList

📊 Changes

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

View changed files

data_structures/circularDoubleLinkedList.c (+261 -0)
data_structures/sortLinkedList.c (+233 -0)

📄 Description

A linked list that sorts in the input


🔄 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/438 **Author:** [@gustoliveira](https://github.com/gustoliveira) **Created:** 10/20/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`dba1a54`](https://github.com/TheAlgorithms/C/commit/dba1a54f0b2dc99bf26fc6810e162aa4e7d69233) Adding a sortLinkedList - [`eae0db5`](https://github.com/TheAlgorithms/C/commit/eae0db57f5ae9fcc332522b3a92ae98654009a27) Adicionando lista ordenada para pull request - [`44fa3db`](https://github.com/TheAlgorithms/C/commit/44fa3db816f6a63d90289bccd5351b04d1f657aa) Adding circularDoubleLinkedList ### 📊 Changes **2 files changed** (+494 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/circularDoubleLinkedList.c` (+261 -0) ➕ `data_structures/sortLinkedList.c` (+233 -0) </details> ### 📄 Description A linked list that sorts in the input --- <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:15:34 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#824