TheAlgorithms-C/Data Structures/Array
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
..
CArray.c Array Data Structure 2018-03-19 20:09:22 -03:00
CArray.h Array Data Structure 2018-03-19 20:09:22 -03:00
CArrayTests.c Array Data Structure 2018-03-19 20:09:22 -03:00
README.md Array Data Structure 2018-03-19 20:09:22 -03:00

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