mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
172a778057
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. |
||
---|---|---|
.. | ||
CArray.c | ||
CArray.h | ||
CArrayTests.c | ||
README.md |
Array
Simple array of integers. With I/O functions, Sort Functions and Search Functions.
Structure
typedef struct CArray {
int *array;
int size;
} CArray;
Files
- CArray.c - Array Implementations
- CArray.h - Import for Usage
- CArrayTests.c - Usage Examples and tests