TheAlgorithms-C/Data Structures/Array/README.md
Leonardo 172a778057 Array Data Structure
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.
2018-03-19 20:09:22 -03:00

19 lines
296 B
Markdown

# Array
Simple array of integers. With I/O functions, Sort Functions and Search Functions.
## Structure
```C
typedef struct CArray {
int *array;
int size;
} CArray;
```
## Files
* CArray.c - Array Implementations
* CArray.h - Import for Usage
* CArrayTests.c - Usage Examples and tests