This commit is contained in:
2024-12-14 12:19:04 +03:00
parent 1816c866f9
commit 2068aa91a0
8 changed files with 88 additions and 91 deletions

13
myalgorithms.h Normal file
View 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