[PR #1092] [MERGED] Update singly_link_list_deletion.c #1651

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1092
Author: @ManogjnaSinguluri
Created: 10/22/2022
Status: Merged
Merged: 1/5/2023
Merged by: @Panquesito7

Base: masterHead: patch-2


📝 Commits (10+)

  • e5e0bc5 Update singly_link_list_deletion.c
  • 8da6813 Update singly_link_list_deletion.c
  • c51e2a7 Update singly_link_list_deletion.c
  • 78a9ff3 Update singly_link_list_deletion.c
  • 619a431 Update singly_link_list_deletion.c
  • b80e7e8 Update singly_link_list_deletion.c
  • 4223f43 Update singly_link_list_deletion.c
  • abf57c6 Merge branch 'master' into patch-2
  • e4309ec chore: apply suggestions from code review
  • 18b925e Merge branch 'master' into patch-2

📊 Changes

1 file changed (+120 additions, -43 deletions)

View changed files

📝 data_structures/linked_list/singly_link_list_deletion.c (+120 -43)

📄 Description

In singly_link_list_deletion.c, the delete function have been modified to delete element at any required position by giving the position number

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:
Element at any required position can be deleted(not only the starting one


🔄 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/1092 **Author:** [@ManogjnaSinguluri](https://github.com/ManogjnaSinguluri) **Created:** 10/22/2022 **Status:** ✅ Merged **Merged:** 1/5/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `patch-2` --- ### 📝 Commits (10+) - [`e5e0bc5`](https://github.com/TheAlgorithms/C/commit/e5e0bc55ba7cfeefe484e3acc71c3f09215289d3) Update singly_link_list_deletion.c - [`8da6813`](https://github.com/TheAlgorithms/C/commit/8da6813959305f3cc027dbb09670786b91d663c5) Update singly_link_list_deletion.c - [`c51e2a7`](https://github.com/TheAlgorithms/C/commit/c51e2a7388d3ae44f9770dbdf451285e9d11282e) Update singly_link_list_deletion.c - [`78a9ff3`](https://github.com/TheAlgorithms/C/commit/78a9ff3831291eec64f1b92185806d6b05423339) Update singly_link_list_deletion.c - [`619a431`](https://github.com/TheAlgorithms/C/commit/619a431678d5cc0e49faa4fbec4ff099b4b12ac7) Update singly_link_list_deletion.c - [`b80e7e8`](https://github.com/TheAlgorithms/C/commit/b80e7e86862f1d4db69402dcc99d2ee968be961d) Update singly_link_list_deletion.c - [`4223f43`](https://github.com/TheAlgorithms/C/commit/4223f435dc38a74f95412a389196fe4f21e416f6) Update singly_link_list_deletion.c - [`abf57c6`](https://github.com/TheAlgorithms/C/commit/abf57c6f84ea70cbf60e6818b57741cbf5920e25) Merge branch 'master' into patch-2 - [`e4309ec`](https://github.com/TheAlgorithms/C/commit/e4309ec3a74ef0c35505f8b9b6932cb185eac7a1) chore: apply suggestions from code review - [`18b925e`](https://github.com/TheAlgorithms/C/commit/18b925e14c2a5e486b2945068ba03957178342eb) Merge branch 'master' into patch-2 ### 📊 Changes **1 file changed** (+120 additions, -43 deletions) <details> <summary>View changed files</summary> 📝 `data_structures/linked_list/singly_link_list_deletion.c` (+120 -43) </details> ### 📄 Description In singly_link_list_deletion.c, the delete function have been modified to delete element at any required position by giving the position number #### 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 - [ ] Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines) - [ ] 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 --> Element at any required position can be deleted(not only the starting one --- <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:23:11 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1651