[PR #533] [MERGED] Circular Linked List #957

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/533
Author: @shubhamsah
Created: 5/18/2020
Status: Merged
Merged: 5/22/2020
Merged by: @StepfenShawn

Base: masterHead: master


📝 Commits (2)

  • 104bf2c Create Circular Linked List
  • a3e1817 Rename CLL.C to CircularLinkedList.C

📊 Changes

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

View changed files

data_structures/linked_list/CircularLinkedList.C (+155 -0)

📄 Description

Program for Circular linked 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/533 **Author:** [@shubhamsah](https://github.com/shubhamsah) **Created:** 5/18/2020 **Status:** ✅ Merged **Merged:** 5/22/2020 **Merged by:** [@StepfenShawn](https://github.com/StepfenShawn) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`104bf2c`](https://github.com/TheAlgorithms/C/commit/104bf2cafc50b005250466f47ced56f85cede35a) Create Circular Linked List - [`a3e1817`](https://github.com/TheAlgorithms/C/commit/a3e1817738145a5d0989b9b18ded09aa8ac21948) Rename CLL.C to CircularLinkedList.C ### 📊 Changes **1 file changed** (+155 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/linked_list/CircularLinkedList.C` (+155 -0) </details> ### 📄 Description Program for Circular linked 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:16:26 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#957