// insertion sort example #include #include #include const int SIZE = 10; void isort (int Z[], int n) { int temp; for (int x = 1; x < n; ++x) { temp= Z[x]; int y = x - 1; while ( y >=0 && temp