insertionsort.h 261 B

123456789101112131415
  1. // Insertion Sort
  2. //
  3. // Author: Rob Gysel
  4. // ECS60, UC Davis
  5. // Adapted from: Lysecky & Vahid "Data Structures Essentials", zyBooks
  6. // include guard
  7. #ifndef INSSORT_H
  8. #define INSSORT_H
  9. #include <vector>
  10. int* InsertionSort(std::vector<int>* numbers);
  11. #endif