Skip to content
Snippets Groups Projects
Commit 9a524001 authored by Yassine BAHOU's avatar Yassine BAHOU
Browse files

Upload New File

parent 53475fca
Branches yassine
No related tags found
No related merge requests found
#ifndef TAS__H
#define TAS__H
#include <stdio.h>
#include <stdlib.h>
typedef struct tas
{
int capacity;
int taille;
int* tab;
}tas_t;
void Exchange(int* a, int* b);
int Parent(int i);
int Left(int i);
int Right(int i);
void heapify(int arr[], int n, int i);
void heapSort(int arr[], int n);
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment