[PR #124] [MERGED] Array Data Structure #355

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

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/124
Author: @LeoVen
Created: 3/19/2018
Status: Merged
Merged: 3/20/2018
Merged by: @christianbender

Base: masterHead: master


📝 Commits (1)

📊 Changes

5 files changed (+553 additions, -13 deletions)

View changed files

📝 Conversions/decimal _to_binary.c (+54 -13)
Data Structures/Array/CArray.c (+253 -0)
Data Structures/Array/CArray.h (+76 -0)
Data Structures/Array/CArrayTests.c (+152 -0)
Data Structures/Array/README.md (+18 -0)

📄 Description

Array of integers with Insert, Remove, Update, Erase, Switch, Reverse functions; Sorting functions like BubbleSort, InsertionSort and SelectionSort; and Search functions like FindMin, FindMax, Frequency count, etc.


🔄 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/124 **Author:** [@LeoVen](https://github.com/LeoVen) **Created:** 3/19/2018 **Status:** ✅ Merged **Merged:** 3/20/2018 **Merged by:** [@christianbender](https://github.com/christianbender) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`172a778`](https://github.com/TheAlgorithms/C/commit/172a778057a56385cd6d45966401b289c1e805c0) Array Data Structure ### 📊 Changes **5 files changed** (+553 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `Conversions/decimal _to_binary.c` (+54 -13) ➕ `Data Structures/Array/CArray.c` (+253 -0) ➕ `Data Structures/Array/CArray.h` (+76 -0) ➕ `Data Structures/Array/CArrayTests.c` (+152 -0) ➕ `Data Structures/Array/README.md` (+18 -0) </details> ### 📄 Description Array of integers with Insert, Remove, Update, Erase, Switch, Reverse functions; Sorting functions like BubbleSort, InsertionSort and SelectionSort; and Search functions like FindMin, FindMax, Frequency count, etc. --- <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:11:59 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#355