[PR #338] [CLOSED] Implemented double sided list #675

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/338
Author: @MarvinTomizawa
Created: 10/5/2019
Status: Closed

Base: masterHead: master


📝 Commits (7)

  • e8da4c7 Added solution to leetcode problem 190 in C
  • 5a6ed8e Added Solution to leetcode Problem 191
  • 1f88545 Added solution to Leetcode Problem 461
  • d2ad4b0 Revert "Added Solution to leetcode Problem 191"
  • 08f62bf Commented code to explain algorithms in 190 and 191
  • 972d4fa Merge pull request #327 from SaurusXI/master
  • 4391a11 IMplemented double sided list

📊 Changes

4 files changed (+62 additions, -0 deletions)

View changed files

data_structures/list/doubleLinkedList.c (+37 -0)
📝 leetcode/README.md (+2 -0)
leetcode/src/190.c (+13 -0)
leetcode/src/191.c (+10 -0)

📄 Description

Implemented double sided list


🔄 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/338 **Author:** [@MarvinTomizawa](https://github.com/MarvinTomizawa) **Created:** 10/5/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (7) - [`e8da4c7`](https://github.com/TheAlgorithms/C/commit/e8da4c7714fe2ae92f91e13d93dcce74b319bc7a) Added solution to leetcode problem 190 in C - [`5a6ed8e`](https://github.com/TheAlgorithms/C/commit/5a6ed8e245e7544fce060d92919a353393bfd064) Added Solution to leetcode Problem 191 - [`1f88545`](https://github.com/TheAlgorithms/C/commit/1f88545538b0a3f7e96a999748f0dee5d21af6cb) Added solution to Leetcode Problem 461 - [`d2ad4b0`](https://github.com/TheAlgorithms/C/commit/d2ad4b0109c02ca61e1f4f918d7ac3d66526b4f2) Revert "Added Solution to leetcode Problem 191" - [`08f62bf`](https://github.com/TheAlgorithms/C/commit/08f62bf39782a1b6b7a57a33a6de94bdbb991236) Commented code to explain algorithms in 190 and 191 - [`972d4fa`](https://github.com/TheAlgorithms/C/commit/972d4fad7ae85d300ef77f3bbdf83b1efcbd5a2f) Merge pull request #327 from SaurusXI/master - [`4391a11`](https://github.com/TheAlgorithms/C/commit/4391a11c658df5c1f6d9eb6bf04fec98dc12039e) IMplemented double sided list ### 📊 Changes **4 files changed** (+62 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/list/doubleLinkedList.c` (+37 -0) 📝 `leetcode/README.md` (+2 -0) ➕ `leetcode/src/190.c` (+13 -0) ➕ `leetcode/src/191.c` (+10 -0) </details> ### 📄 Description Implemented double sided list --- <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:14:31 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#675