[PR #286] [CLOSED] Single and Circular Linked Lists #589

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/286
Author: @Ojaswy
Created: 10/1/2019
Status: Closed

Base: masterHead: master


📝 Commits (1)

📊 Changes

4 files changed (+325 additions, -0 deletions)

View changed files

data_structures/linked lists/cll.c (+186 -0)
data_structures/linked lists/cll.exe (+0 -0)
data_structures/linked lists/sll.c (+139 -0)
data_structures/linked lists/sll.exe (+0 -0)

📄 Description

This code contains the Algorithms for Single and Circular Linked Lists with the added choice of letting the user create the nodes of his choice at any position in the 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/286 **Author:** [@Ojaswy](https://github.com/Ojaswy) **Created:** 10/1/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`182e9ff`](https://github.com/TheAlgorithms/C/commit/182e9ff438b47651b314310eac4835d89e727109) Add files via upload ### 📊 Changes **4 files changed** (+325 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/linked lists/cll.c` (+186 -0) ➕ `data_structures/linked lists/cll.exe` (+0 -0) ➕ `data_structures/linked lists/sll.c` (+139 -0) ➕ `data_structures/linked lists/sll.exe` (+0 -0) </details> ### 📄 Description This code contains the Algorithms for Single and Circular Linked Lists with the added choice of letting the user create the nodes of his choice at any position in the 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:13: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#589