Task 7
This commit is contained in:
13
myalgorithms.h
Normal file
13
myalgorithms.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef MYALGORITHMS_H
|
||||
#define MYALGORITHMS_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
void bubbleSort(std::vector<int>& 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<int>& vec, int low, int high);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user