[FEATURE] Adding Cycle detection in linked list code #63

Closed
opened 2026-01-29 15:02:18 +00:00 by claunia · 14 comments
Owner

Originally created by @garimamangal19 on GitHub (Oct 24, 2020).

Detailed Description

Context

Possible Implementation

Originally created by @garimamangal19 on GitHub (Oct 24, 2020). <!--- Provide a general summary of the issue in the Title above --> ## Detailed Description <!--- Provide a detailed description of the change or addition you are proposing --> ## Context <!--- Why is this change important to you? How would you use it? --> <!--- How can it benefit other users? --> ## Possible Implementation <!--- Not obligatory, but suggest an idea for implementing addition or change -->
claunia added the Staleenhancement labels 2026-01-29 15:02:18 +00:00
Author
Owner

@Panquesito7 commented on GitHub (Oct 26, 2020):

Please describe as much as possible about this algorithm. Thank you.

@Panquesito7 commented on GitHub (Oct 26, 2020): Please describe as much as possible about this algorithm. Thank you.
Author
Owner

@bhavdeep009 commented on GitHub (Feb 7, 2021):

are you looking for the code which detects cycle in link list?

@bhavdeep009 commented on GitHub (Feb 7, 2021): are you looking for the code which detects cycle in link list?
Author
Owner

@Panquesito7 commented on GitHub (Feb 8, 2021):

You haven't filled the template: it doesn't have description (not even detailed), context or possible implementation.
Please fill the template how does this algorithm work (or at least a description), context and possible implementation.

Thank you.

@Panquesito7 commented on GitHub (Feb 8, 2021): You haven't filled the template: it doesn't have description (not even detailed), context or possible implementation. Please fill the template how does this algorithm work (or at least a description), context and possible implementation. Thank you.
Author
Owner

@ankitakul commented on GitHub (Feb 12, 2021):

Hello, is this issue still open? I have a project for a software methodology class to contribute to an open source repo and I would like to work on this project. Could I be assigned to this issue?

Possible implementation: I was thinking of using 2 pointers, slow and fast. Slow pointer will move one step forward and fast pointer will move 2 steps forward. If they are pointing to same node, we know its a loop. If the fast reaches the null/end, it has no loop.

@ankitakul commented on GitHub (Feb 12, 2021): Hello, is this issue still open? I have a project for a software methodology class to contribute to an open source repo and I would like to work on this project. Could I be assigned to this issue? Possible implementation: I was thinking of using 2 pointers, slow and fast. Slow pointer will move one step forward and fast pointer will move 2 steps forward. If they are pointing to same node, we know its a loop. If the fast reaches the null/end, it has no loop.
Author
Owner

@Panquesito7 commented on GitHub (Feb 13, 2021):

Thank you for your interest in contributing. 👍
Before submitting a PR, please ensure the following:

  • The algorithm isn't a duplicate in this repository.
  • Make your code as per the repository standards.
  • Ensure all the automated-tests pass.
@Panquesito7 commented on GitHub (Feb 13, 2021): Thank you for your interest in contributing. 👍 Before submitting a PR, please ensure the following: * The algorithm isn't a duplicate in this repository. * Make your code as per the repository [standards](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/CONTRIBUTING.md). * Ensure all the [automated-tests](https://github.com/TheAlgorithms/C-Plus-Plus/actions) pass.
Author
Owner

@ankitakul commented on GitHub (Mar 17, 2021):

Hello, My code is ready. I made sure its not duplicate and according to standards. I am new to github and I am having issues pushing the code. It is saying invalid username and password , authentication failed for github/TheAlgorithms/C.git.
Is it because I am not assigned the issues? Can you please assign it to me.

@ankitakul commented on GitHub (Mar 17, 2021): Hello, My code is ready. I made sure its not duplicate and according to standards. I am new to github and I am having issues pushing the code. It is saying invalid username and password , authentication failed for github/TheAlgorithms/C.git. Is it because I am not assigned the issues? Can you please assign it to me.
Author
Owner

@ayaankhan98 commented on GitHub (Mar 17, 2021):

Hello, My code is ready. I made sure its not duplicate and according to standards. I am new to github and I am having issues pushing the code. It is saying invalid username and password , authentication failed for github/TheAlgorithms/C.git.
Is it because I am not assigned the issues? Can you please assign it to me.

No it has no relation with issue assignment. It is because of your improper login configuration for Github CLI.

@ayaankhan98 commented on GitHub (Mar 17, 2021): > Hello, My code is ready. I made sure its not duplicate and according to standards. I am new to github and I am having issues pushing the code. It is saying invalid username and password , authentication failed for github/TheAlgorithms/C.git. > Is it because I am not assigned the issues? Can you please assign it to me. No it has no relation with issue assignment. It is because of your improper login configuration for Github CLI.
Author
Owner

@ankitakul commented on GitHub (Mar 19, 2021):

Capture

I am getting this error now.

@ankitakul commented on GitHub (Mar 19, 2021): ![Capture](https://user-images.githubusercontent.com/47610108/111711941-1b688680-8823-11eb-9613-d663c0feafeb.PNG) I am getting this error now.
Author
Owner

@Panquesito7 commented on GitHub (Mar 19, 2021):

I am getting this error now.

You must fork the repository, then clone your forked repository. 🙂

@Panquesito7 commented on GitHub (Mar 19, 2021): > I am getting this error now. You must [fork](https://docs.github.com/en/desktop/contributing-and-collaborating-using-github-desktop/cloning-and-forking-repositories-from-github-desktop#forking-a-repository) the repository, then clone your forked repository. 🙂
Author
Owner

@ankitakul commented on GitHub (Mar 19, 2021):

I was able to create a pull request after forking the repository. Thank you very much for your support!! 😊

@ankitakul commented on GitHub (Mar 19, 2021): I was able to create a pull request after forking the repository. Thank you very much for your support!! 😊
Author
Owner

@Arjun-Dagar commented on GitHub (Aug 2, 2021):

Can i work on it?

@Arjun-Dagar commented on GitHub (Aug 2, 2021): Can i work on it?
Author
Owner

@Panquesito7 commented on GitHub (Aug 5, 2021):

Can I work on it?

Sure, if you want. I'll review your PR as soon as possible. 🙂
Just follow the steps mentioned in this issue above here.

@Panquesito7 commented on GitHub (Aug 5, 2021): > Can I work on it? Sure, if you want. I'll review your PR as soon as possible. 🙂 Just follow the steps mentioned in this issue above [**here**](https://github.com/TheAlgorithms/C/issues/714#issuecomment-778542952).
Author
Owner

@github-actions[bot] commented on GitHub (Oct 17, 2021):

This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@github-actions[bot] commented on GitHub (Oct 17, 2021): This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Author
Owner

@github-actions[bot] commented on GitHub (Oct 24, 2021):

Please ping one of the maintainers once you add more information and updates here. If this is not the case and you need some help, feel free to ask for help in our Gitter channel or our Discord server. Thank you for your contributions!

@github-actions[bot] commented on GitHub (Oct 24, 2021): Please ping one of the maintainers once you add more information and updates here. If this is not the case and you need some help, feel free to ask for help in our [Gitter](https://gitter.im/TheAlgorithms) channel or our [Discord server](https://discord.gg/c7MnfGFGa6). Thank you for your contributions!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#63