#ifndef MYALGORITHMS_H #define MYALGORITHMS_H #include void bubbleSort(std::vector& v); void CocktailSort(int arr[], int n); void insertionSort(int arr[], int n); void selectionSort(int arr[], int n); void shellSort(int arr[], int n); void quickSort(std::vector& vec, int low, int high); #endif