algo.h 232 B

12345678
  1. #pragma once
  2. #ifndef ALGO_H
  3. #define ALGO_H
  4. void QuickSort(int* arr, int left, int right);
  5. int PartSort(int* arr, int left, int right);
  6. void swap(int* arr, int left, int right);
  7. int* RandomArrayCreate(int Arraylength);
  8. #endif