[PR #520] [MERGED] dynamic array data structure #939

Closed
opened 2026-01-29 15:16:22 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/520
Author: @wesllhey
Created: 4/15/2020
Status: Merged
Merged: 4/17/2020
Merged by: @nikhilkala

Base: masterHead: feature/dynamic-array


📝 Commits (1)

  • c3e10d5 dynamic array data structure

📊 Changes

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

View changed files

data_structures/dynamic_array/Makefile (+13 -0)
data_structures/dynamic_array/dynamic_array.c (+79 -0)
data_structures/dynamic_array/dynamic_array.h (+26 -0)
data_structures/dynamic_array/main.c (+33 -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/520 **Author:** [@wesllhey](https://github.com/wesllhey) **Created:** 4/15/2020 **Status:** ✅ Merged **Merged:** 4/17/2020 **Merged by:** [@nikhilkala](https://github.com/nikhilkala) **Base:** `master` ← **Head:** `feature/dynamic-array` --- ### 📝 Commits (1) - [`c3e10d5`](https://github.com/TheAlgorithms/C/commit/c3e10d552ad24c7c41db5a3e69eab6d63a591f9f) dynamic array data structure ### 📊 Changes **4 files changed** (+151 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/dynamic_array/Makefile` (+13 -0) ➕ `data_structures/dynamic_array/dynamic_array.c` (+79 -0) ➕ `data_structures/dynamic_array/dynamic_array.h` (+26 -0) ➕ `data_structures/dynamic_array/main.c` (+33 -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:16:22 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#939