Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Yassine BAHOU
Projet labyrinthe
Commits
b56fd28e
Commit
b56fd28e
authored
Jun 24, 2021
by
Wadie EL AMRANI
Browse files
Téléverser un nouveau fichier
parent
dfdd4234
Changes
1
Hide whitespace changes
Inline
Side-by-side
Partition1final/partition.h
0 → 100644
View file @
b56fd28e
#include <stdlib.h>
#include <stdio.h>
typedef
struct
Partition
{
int
*
tableau
;
// le debut du tableau
int
taille
;
// la taille du tableau
}
Partition_t
;
Partition_t
creation_partition
(
int
longueur
);
void
Affichage_partition
(
Partition_t
partition
);
int
recherche_classe
(
Partition_t
partition
,
int
element
);
Partition_t
fusion
(
int
x
,
int
y
,
Partition_t
partition
);
void
lister_partition
(
Partition_t
partition
);
int
*
lister_classe
(
Partition_t
partition
,
int
classe
);
void
afficher_tableau
(
int
*
tableau
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment