// Insertion Sort // // Author: Rob Gysel // ECS60, UC Davis // Adapted from: Lysecky & Vahid "Data Structures Essentials", zyBooks // include guard #ifndef INSSORT_H #define INSSORT_H #include int* InsertionSort(std::vector* numbers); #endif