You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

d2s.c 189B

123456789101112
  1. #include "common.h"
  2. #include "mergeseq.h"
  3. int main(void)
  4. {
  5. int* array;
  6. unsigned n;
  7. read_input(&array, &n);
  8. merge_sort_seq(array, 2 * n);
  9. print_array(array, 2 * n);
  10. return 0;
  11. }