Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4z
4 commits behind, 6 commits ahead of the upstream repository.
tris.h 473 B
#ifndef TRIS_H
#define TRIS_H
#include <stdint.h>
#include <stdlib.h>

void triInsertion(long* A, size_t n);

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);

void triRapide(long* A, size_t n);
void sousTriRapide(long* A, size_t first, size_t size);
size_t partition(long* A, size_t first, size_t size);
void permuter(long* A,size_t i,size_t j);

#endif //TRIS_H