[PR #1508] [CLOSED] Circular linked list implementation using C language #2111

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1508
Author: @Nihhaar0002
Created: 10/23/2025
Status: Closed

Base: masterHead: feat/circular-linked-list


📝 Commits (2)

  • 9ca6b1b Add doubly linked list implementation in C
  • 6cd7e7e Circular linked list implementation in C

📊 Changes

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

View changed files

data_structures/circular_linked_list.c (+222 -0)
data_structures/doubly_linked_list.c (+32 -0)

📄 Description

Implemented circular linked list with insert (beginning, end, position), delete (beginning, end, position), and display operations.
Added under data_structures/ folder following project structure.


🔄 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/1508 **Author:** [@Nihhaar0002](https://github.com/Nihhaar0002) **Created:** 10/23/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `feat/circular-linked-list` --- ### 📝 Commits (2) - [`9ca6b1b`](https://github.com/TheAlgorithms/C/commit/9ca6b1b2a958085f206bb33a4f0f02ff4a0fdafd) Add doubly linked list implementation in C - [`6cd7e7e`](https://github.com/TheAlgorithms/C/commit/6cd7e7ecfbdb2bbb24a54a0c14bc9c4bea5d8450) Circular linked list implementation in C ### 📊 Changes **2 files changed** (+254 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/circular_linked_list.c` (+222 -0) ➕ `data_structures/doubly_linked_list.c` (+32 -0) </details> ### 📄 Description Implemented circular linked list with insert (beginning, end, position), delete (beginning, end, position), and display operations. Added under data_structures/ folder following project structure. --- <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:28:51 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2111