[PR #833] [CLOSED] feat: Code for Reversing a Linked list #1348

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/833
Author: @akash-janapati
Created: 5/20/2021
Status: Closed

Base: masterHead: Reverse_SLL


📝 Commits (8)

  • ff1ca5b Added code for Reversing SLL
  • 50371bc Added code to reverse a Linked list
  • bd68b21 Added code for reversing a SLL
  • 782a074 Update reverse_linked_list.c- Commited suggestion
  • 1d99456 Updated based on suggestion
  • 76f239f Update reverse_linked_list.c
  • 6b3abd6 Update reverse_linked_list.c
  • bcb06e7 Update reverse_linked_list.c

📊 Changes

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

View changed files

data_structures/linked_list/reverse_linked_list.c (+180 -0)

📄 Description

Description of Change

References

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • 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:


🔄 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/833 **Author:** [@akash-janapati](https://github.com/akash-janapati) **Created:** 5/20/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `Reverse_SLL` --- ### 📝 Commits (8) - [`ff1ca5b`](https://github.com/TheAlgorithms/C/commit/ff1ca5b68b495c1c9603dceef7d302f544533d56) Added code for Reversing SLL - [`50371bc`](https://github.com/TheAlgorithms/C/commit/50371bca1f6c5e0bbcda56c68309756798454cc6) Added code to reverse a Linked list - [`bd68b21`](https://github.com/TheAlgorithms/C/commit/bd68b21b4f5c7d20402af1ee474867512becbc18) Added code for reversing a SLL - [`782a074`](https://github.com/TheAlgorithms/C/commit/782a074d3ae1f3ee0f4ea82266ca59027d910589) Update reverse_linked_list.c- Commited suggestion - [`1d99456`](https://github.com/TheAlgorithms/C/commit/1d99456c65c0beaec5e9ee1bd99b433b65687a92) Updated based on suggestion - [`76f239f`](https://github.com/TheAlgorithms/C/commit/76f239f56a00d3a88ac8c6b19f04372b59613c81) Update reverse_linked_list.c - [`6b3abd6`](https://github.com/TheAlgorithms/C/commit/6b3abd6be461cbd7b57bdd6826a29e51bf635ca8) Update reverse_linked_list.c - [`bcb06e7`](https://github.com/TheAlgorithms/C/commit/bcb06e79ba02d768f8ecaa0682178212ff1c5c3c) Update reverse_linked_list.c ### 📊 Changes **1 file changed** (+180 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/linked_list/reverse_linked_list.c` (+180 -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 description of change - [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] 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: <!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/833"><img src="https://gitpod.io/button/open-in-gitpod.svg"/></a> --- <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:34 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1348