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.

12345678
  1. #ifndef D2S_H
  2. #define D2S_H
  3. void merge_sort_merge_seq(int* array, unsigned l, unsigned m, unsigned h);
  4. void merge_sort_sub_seq(int* array, unsigned l, unsigned h);
  5. void merge_sort_seq(int* array, unsigned s);
  6. #endif