pz12_gavrilov

This is a task for our favourite professor
git clone git://git.stellar-nexus.ru/pz12_gavrilov
Log | Files | Refs

sort.h (176B)


      1 void bubble_sort(unsigned int n, int a[n]);
      2 void choice_sort(unsigned int n, int a[n]);
      3 void insert_sort(unsigned int n, int a[n]);
      4 void  shell_sort(unsigned int n, int a[n]);