Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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