[PR #238] [MERGED] stack implementation by linkedlist #530

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/238
Author: @danghai
Created: 7/2/2019
Status: Merged
Merged: 7/3/2019
Merged by: @danghai

Base: masterHead: stack


📝 Commits (3)

📊 Changes

6 files changed (+134 additions, -3 deletions)

View changed files

.gitignore (+2 -0)
📝 data_structures/stack/README.md (+4 -3)
data_structures/stack/stack_linkedlist/Makefile (+12 -0)
data_structures/stack/stack_linkedlist/main.c (+22 -0)
data_structures/stack/stack_linkedlist/stack.c (+79 -0)
data_structures/stack/stack_linkedlist/stack.h (+15 -0)

📄 Description

No description provided


🔄 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/238 **Author:** [@danghai](https://github.com/danghai) **Created:** 7/2/2019 **Status:** ✅ Merged **Merged:** 7/3/2019 **Merged by:** [@danghai](https://github.com/danghai) **Base:** `master` ← **Head:** `stack` --- ### 📝 Commits (3) - [`2e58bc2`](https://github.com/TheAlgorithms/C/commit/2e58bc22071f12027af5f2d8b428f77172df36d5) stack implementation by linkedlist - [`5160b2f`](https://github.com/TheAlgorithms/C/commit/5160b2f8ee0f564ca0971a0051f8aab9a5fe6514) Add .gitignore file - [`ab3173f`](https://github.com/TheAlgorithms/C/commit/ab3173f5815944451b8cd98329c8a68cdccf3d5f) Fix indenting ### 📊 Changes **6 files changed** (+134 additions, -3 deletions) <details> <summary>View changed files</summary> ➕ `.gitignore` (+2 -0) 📝 `data_structures/stack/README.md` (+4 -3) ➕ `data_structures/stack/stack_linkedlist/Makefile` (+12 -0) ➕ `data_structures/stack/stack_linkedlist/main.c` (+22 -0) ➕ `data_structures/stack/stack_linkedlist/stack.c` (+79 -0) ➕ `data_structures/stack/stack_linkedlist/stack.h` (+15 -0) </details> ### 📄 Description _No description provided_ --- <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:13: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#530