[PR #483] [CLOSED] Doubly Linked List #885

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/483
Author: @NehaKohad
Created: 10/28/2019
Status: Closed

Base: masterHead: master


📝 Commits (1)

📊 Changes

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

View changed files

data_structures/linked_list/DoublyLinkedList.c (+202 -0)

📄 Description

Contains a function to :
Insert the element
Delete from the back
Reverse List
Display List


🔄 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/483 **Author:** [@NehaKohad](https://github.com/NehaKohad) **Created:** 10/28/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`cc3d28a`](https://github.com/TheAlgorithms/C/commit/cc3d28a22615ec1ad3018d126bfb02d47ad6d66c) Doubly Linked List ### 📊 Changes **1 file changed** (+202 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/linked_list/DoublyLinkedList.c` (+202 -0) </details> ### 📄 Description Contains a function to : Insert the element Delete from the back Reverse List Display List --- <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:59 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#885