[PR #816] [CLOSED] feat: added an algorithm to check loop in linked-list #1334

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/816
Author: @ankitakul
Created: 3/19/2021
Status: Closed

Base: masterHead: cycle_ll


📝 Commits (10+)

  • 8765bcf added a file to check loop in linked-list
  • 07c0481 feat: added an algorithm to check loop in linked-list
  • 6c56baa feat: added an algorithm to check a loop in linked-list
  • fa9a120 feat: added an algorithm to check a loop in linked-list
  • feae4e9 feat: added an algorithm to check a loop in linked-list
  • 3c1aa05 feat: added an algorithm to check a loop in linked-list
  • ddc29c6 Update data_structures/linked_list/cycle_in_linked_list.c
  • 94b965d Update data_structures/linked_list/cycle_in_linked_list.c
  • 99ab745 Update data_structures/linked_list/cycle_in_linked_list.c
  • d20e8da Update data_structures/linked_list/cycle_in_linked_list.c

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
data_structures/linked_list/cycle_in_linked_list.c (+106 -0)

📄 Description

Description of Change

References

Checklist

  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • PR title follows semantic commit guidelines
  • I acknowledge that all my contributions will be made under the project's license.

Notes:

This file contains code to check loop in a linked list. I have added a test below.

This is my first time committing to a project other than mine. Please let me know if you need anything else.
Thank you very much for your support, I really appreciate it. I would love working on other issue/enhancements.


🔄 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/816 **Author:** [@ankitakul](https://github.com/ankitakul) **Created:** 3/19/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `cycle_ll` --- ### 📝 Commits (10+) - [`8765bcf`](https://github.com/TheAlgorithms/C/commit/8765bcf04a0a5723b4b87e24684d7a2f6efd676d) added a file to check loop in linked-list - [`07c0481`](https://github.com/TheAlgorithms/C/commit/07c0481c380c5721d9f87a3c90782c016c9a56f0) feat: added an algorithm to check loop in linked-list - [`6c56baa`](https://github.com/TheAlgorithms/C/commit/6c56baa359352cc3bbf3f72e8085a1b70a2f4352) feat: added an algorithm to check a loop in linked-list - [`fa9a120`](https://github.com/TheAlgorithms/C/commit/fa9a120574fc1362475d41a81d5e1533ea227cbc) feat: added an algorithm to check a loop in linked-list - [`feae4e9`](https://github.com/TheAlgorithms/C/commit/feae4e97f34e742dbf2f43cacc16b37e4294d260) feat: added an algorithm to check a loop in linked-list - [`3c1aa05`](https://github.com/TheAlgorithms/C/commit/3c1aa05fff678d14a425f34db7297f3d76898ae4) feat: added an algorithm to check a loop in linked-list - [`ddc29c6`](https://github.com/TheAlgorithms/C/commit/ddc29c6d4b6937b1071c3ba504e99e2499282806) Update data_structures/linked_list/cycle_in_linked_list.c - [`94b965d`](https://github.com/TheAlgorithms/C/commit/94b965d622ce06704896cce40d9fc0a8007a740f) Update data_structures/linked_list/cycle_in_linked_list.c - [`99ab745`](https://github.com/TheAlgorithms/C/commit/99ab745c0efba88a9dbf795d808b092f19161bd3) Update data_structures/linked_list/cycle_in_linked_list.c - [`d20e8da`](https://github.com/TheAlgorithms/C/commit/d20e8da254c00c950c297e931ce499d872b60056) Update data_structures/linked_list/cycle_in_linked_list.c ### 📊 Changes **2 files changed** (+107 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `data_structures/linked_list/cycle_in_linked_list.c` (+106 -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 <!-- Add any reference to previous pull-request or issue --> #### 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] Added tests and example, test must pass - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> This file contains code to check loop in a linked list. I have added a test below. This is my first time committing to a project other than mine. Please let me know if you need anything else. Thank you very much for your support, I really appreciate it. I would love working on other issue/enhancements. --- <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:19:24 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1334