// File: sorts.h
//
// Function prototype for all sorts of sorting functions

#ifndef _sorts_h
#define _sorts_h

#include "array.h"

void InsertionSort(Array& A) ;
void SelectionSort(Array& A) ;
void QuickSort(Array& A) ;
void MergeSort(Array& A) ;

void InsertionSortPart(Array& A, int low, int high) ;

#endif
