Skip to content
Snippets Groups Projects
tris.h 285 B
Newer Older
Ukhanov Ilya's avatar
Ukhanov Ilya committed
#ifndef TRIS_H
#define TRIS_H
#include <stdint.h>
malric litiere's avatar
malric litiere committed
#include <stdlib.h>
Ukhanov Ilya's avatar
Ukhanov Ilya committed

Ukhanov Ilya's avatar
Ukhanov Ilya committed
void triInsertion(long* A, size_t n);
Ukhanov Ilya's avatar
Ukhanov Ilya committed
void triFusion(long* A, size_t size);
void sousTriFusion(long* A, size_t first, size_t size);
void fusion(long* A, size_t first, size_t middle, size_t size);

#endif //TRIS_H