[PR #1507] [CLOSED] Dubly linked list implementation in C #2109

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

📋 Pull Request Information

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

Base: masterHead: feat/doubly-linked-list


📝 Commits (1)

  • 9ca6b1b Add doubly linked list implementation in C

📊 Changes

1 file changed (+32 additions, -0 deletions)

View changed files

data_structures/doubly_linked_list.c (+32 -0)

📄 Description

Implemented doubly 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/1507 **Author:** [@Nihhaar0002](https://github.com/Nihhaar0002) **Created:** 10/23/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `feat/doubly-linked-list` --- ### 📝 Commits (1) - [`9ca6b1b`](https://github.com/TheAlgorithms/C/commit/9ca6b1b2a958085f206bb33a4f0f02ff4a0fdafd) Add doubly linked list implementation in C ### 📊 Changes **1 file changed** (+32 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/doubly_linked_list.c` (+32 -0) </details> ### 📄 Description Implemented doubly 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:50 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2109