[PR #641] [CLOSED] feat: add memory efficient double linked list #1100

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/641
Author: @YaraYasser
Created: 10/3/2020
Status: Closed

Base: masterHead: master


📝 Commits (2)

  • 5ae3220 Added octal to binary conversion (#629)
  • 685efb6 feat: add memory efficient double linked list

📊 Changes

3 files changed (+155 additions, -0 deletions)

View changed files

📝 DIRECTORY.md (+1 -0)
conversions/octal_to_binary.c (+62 -0)
data_structures/linked_list/double_linked_lists.c (+92 -0)

📄 Description

Description of Change

This file added in data structure linked list adding memory efficient double linked list based on XOR operation


🔄 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/641 **Author:** [@YaraYasser](https://github.com/YaraYasser) **Created:** 10/3/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`5ae3220`](https://github.com/TheAlgorithms/C/commit/5ae32200960a1db0b7c8933e884f8a59ecd2785c) Added octal to binary conversion (#629) - [`685efb6`](https://github.com/TheAlgorithms/C/commit/685efb64ec30e12eb03f65512a3f2f15505bff2f) feat: add memory efficient double linked list ### 📊 Changes **3 files changed** (+155 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `DIRECTORY.md` (+1 -0) ➕ `conversions/octal_to_binary.c` (+62 -0) ➕ `data_structures/linked_list/double_linked_lists.c` (+92 -0) </details> ### 📄 Description #### Description of Change This file added in data structure linked list adding memory efficient double linked list based on XOR operation <a href="https://gitpod.io/#https://github.com/TheAlgorithms/C/pull/641"><img src="https://gitpod.io/api/apps/github/pbs/github.com/YaraYasser/C.git/685efb64ec30e12eb03f65512a3f2f15505bff2f.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:32 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1100