[PR #1038] [MERGED] Create circular_doubly_linked_list.c #1587

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1038
Author: @SahilK-027
Created: 10/12/2022
Status: Merged
Merged: 3/2/2023
Merged by: @Panquesito7

Base: masterHead: master


📝 Commits (10+)

  • 37cf838 Create circular_doubly_linked_list.c
  • e88d3cd Update data_structures/linked_list/circular_doubly_linked_list.c
  • 639a3a7 Update circular_doubly_linked_list.c
  • 3eaec0f Merge branch 'TheAlgorithms:master' into master
  • e72793a Update data_structures/linked_list/circular_doubly_linked_list.c
  • f397ed4 Update data_structures/linked_list/circular_doubly_linked_list.c
  • 1fe2515 Merge branch 'TheAlgorithms:master' into master
  • 1915225 Update circular_doubly_linked_list.c
  • 4477c77 Update data_structures/linked_list/circular_doubly_linked_list.c
  • c2627d8 Update data_structures/linked_list/circular_doubly_linked_list.c

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
data_structures/linked_list/circular_doubly_linked_list.c (+304 -0)

📄 Description

Description of Change

References

NONE

Checklist

  • Added file name matches File name guidelines
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes: I've seen the directory for linked lists where I didn't find code for implementing circular doubly linked lists. so, I implemented it and created a new file circular_doubly_linked_list.c


🔄 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/1038 **Author:** [@SahilK-027](https://github.com/SahilK-027) **Created:** 10/12/2022 **Status:** ✅ Merged **Merged:** 3/2/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`37cf838`](https://github.com/TheAlgorithms/C/commit/37cf838c7136ba450abd65550476c1280e6d5249) Create circular_doubly_linked_list.c - [`e88d3cd`](https://github.com/TheAlgorithms/C/commit/e88d3cda7d0639eed59fc3e119899b37db19de89) Update data_structures/linked_list/circular_doubly_linked_list.c - [`639a3a7`](https://github.com/TheAlgorithms/C/commit/639a3a7581f6e3671787ec98569ef44bed8f0674) Update circular_doubly_linked_list.c - [`3eaec0f`](https://github.com/TheAlgorithms/C/commit/3eaec0fbcb1b3d322db906c1ba94043dba40d7fb) Merge branch 'TheAlgorithms:master' into master - [`e72793a`](https://github.com/TheAlgorithms/C/commit/e72793a4e9983f61074a3143680501b6ffcfcf6d) Update data_structures/linked_list/circular_doubly_linked_list.c - [`f397ed4`](https://github.com/TheAlgorithms/C/commit/f397ed406e64ae70a05c7dd51b6126b610316778) Update data_structures/linked_list/circular_doubly_linked_list.c - [`1fe2515`](https://github.com/TheAlgorithms/C/commit/1fe25159776ec5b9ad4e6a9ddac27b34d25e31b6) Merge branch 'TheAlgorithms:master' into master - [`1915225`](https://github.com/TheAlgorithms/C/commit/19152251f530652125060d9e46401eae674c29de) Update circular_doubly_linked_list.c - [`4477c77`](https://github.com/TheAlgorithms/C/commit/4477c770f732f181cae4e29f63759806d42b4c74) Update data_structures/linked_list/circular_doubly_linked_list.c - [`c2627d8`](https://github.com/TheAlgorithms/C/commit/c2627d881d86f9b7aa24a654568d087b26ad49b9) Update data_structures/linked_list/circular_doubly_linked_list.c ### 📊 Changes **2 files changed** (+305 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `data_structures/linked_list/circular_doubly_linked_list.c` (+304 -0) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> #### References NONE #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [x] Relevant documentation/comments is changed or added - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: I've seen the directory for linked lists where I didn't find code for implementing circular doubly linked lists. so, I implemented it and created a new file circular_doubly_linked_list.c --- <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:22:31 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1587