[PR #673] [MERGED] Doubly linked list, simple code. #1150

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/673
Author: @gabrielmotablima
Created: 10/18/2020
Status: Merged
Merged: 10/20/2020
Merged by: @kvedala

Base: masterHead: patch-3


📝 Commits (9)

  • 00ec271 Doubly linked list, simple code.
  • 4393cce organizing code a bit more
  • 0074729 add link in DIRECTORY.md and more comments/cleaning.
  • 046f93b remove global variables and redundancy.
  • 3c55208 add Wikipedia reference
  • f7ac590 add documentation comments in all functions/headers
  • f09503b add update in file brief
  • c8823ae remove part of file @details
  • ba9ccdb Merge branch 'master' into patch-3

📊 Changes

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

View changed files

📝 DIRECTORY.md (+1 -0)
data_structures/linked_list/doubly_linked_list.c (+293 -0)

📄 Description

#633

Description of Change

References

Checklist

  • Added description of change
  • Relevant documentation/comments is changed or added
  • 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: Just a simple code on double-linked list containing functions for insertion, deletion, search, printing of structure and an example.


🔄 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/673 **Author:** [@gabrielmotablima](https://github.com/gabrielmotablima) **Created:** 10/18/2020 **Status:** ✅ Merged **Merged:** 10/20/2020 **Merged by:** [@kvedala](https://github.com/kvedala) **Base:** `master` ← **Head:** `patch-3` --- ### 📝 Commits (9) - [`00ec271`](https://github.com/TheAlgorithms/C/commit/00ec2710b5d276361f6c02669fbdfd0c943d9fea) Doubly linked list, simple code. - [`4393cce`](https://github.com/TheAlgorithms/C/commit/4393cceea8518ee109cdb229c0ee75c9b90dff6a) organizing code a bit more - [`0074729`](https://github.com/TheAlgorithms/C/commit/0074729976e6589f3e14bd6b36ced04a2e3b9d75) add link in DIRECTORY.md and more comments/cleaning. - [`046f93b`](https://github.com/TheAlgorithms/C/commit/046f93b6c91095528c1fb5ca51037cdb577d7305) remove global variables and redundancy. - [`3c55208`](https://github.com/TheAlgorithms/C/commit/3c55208b7c1d0bb131c8b4f74f3ffd1298b9b01c) add Wikipedia reference - [`f7ac590`](https://github.com/TheAlgorithms/C/commit/f7ac590a8e96a97af57a8d465306edf0de6705e0) add documentation comments in all functions/headers - [`f09503b`](https://github.com/TheAlgorithms/C/commit/f09503b2dfd8af06ef7d85c10ba743172742457c) add update in file brief - [`c8823ae`](https://github.com/TheAlgorithms/C/commit/c8823ae24ab9657202145de1f50fc22fe8db6aa3) remove part of file @details - [`ba9ccdb`](https://github.com/TheAlgorithms/C/commit/ba9ccdb258be37e9a5b02fee4d94720403c248fc) Merge branch 'master' into patch-3 ### 📊 Changes **2 files changed** (+294 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `data_structures/linked_list/doubly_linked_list.c` (+293 -0) </details> ### 📄 Description #633 #### 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] Relevant documentation/comments is changed or added - [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: Just a simple code on double-linked list containing functions for insertion, deletion, search, printing of structure and an example.<!-- Please add a one-line description for developers or pull request viewers --> <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/673"><img src="https://gitpod.io/api/apps/github/pbs/github.com/GabrielMotaBLima/C.git/ba9ccdb258be37e9a5b02fee4d94720403c248fc.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:17:58 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1150