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.

d2p.h 179B

1234567
  1. #ifndef D2P_H
  2. #define D2P_H
  3. void merge_sort_sub_par(int* array, unsigned l, unsigned h, unsigned threads);
  4. void merge_sort_par(int* array, unsigned s, unsigned threads);
  5. #endif