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 167B

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