Skip to content
Snippets Groups Projects
Commit dd0b11b5 authored by Maxime Bachelet's avatar Maxime Bachelet
Browse files

Resultat: ggplot

parent b11868e2
Branches
No related merge requests found
renduTP2/images/tab_bulle2.png

20.6 KiB | W: | H:

renduTP2/images/tab_bulle2.png

156 KiB | W: | H:

renduTP2/images/tab_bulle2.png
renduTP2/images/tab_bulle2.png
renduTP2/images/tab_bulle2.png
renduTP2/images/tab_bulle2.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_bulle2mem.png

24.6 KiB | W: | H:

renduTP2/images/tab_bulle2mem.png

158 KiB | W: | H:

renduTP2/images/tab_bulle2mem.png
renduTP2/images/tab_bulle2mem.png
renduTP2/images/tab_bulle2mem.png
renduTP2/images/tab_bulle2mem.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_fusion2.png

22.1 KiB | W: | H:

renduTP2/images/tab_fusion2.png

160 KiB | W: | H:

renduTP2/images/tab_fusion2.png
renduTP2/images/tab_fusion2.png
renduTP2/images/tab_fusion2.png
renduTP2/images/tab_fusion2.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_fusion2meme.png

15.7 KiB | W: | H:

renduTP2/images/tab_fusion2meme.png

109 KiB | W: | H:

renduTP2/images/tab_fusion2meme.png
renduTP2/images/tab_fusion2meme.png
renduTP2/images/tab_fusion2meme.png
renduTP2/images/tab_fusion2meme.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_insert2.png

19.2 KiB | W: | H:

renduTP2/images/tab_insert2.png

135 KiB | W: | H:

renduTP2/images/tab_insert2.png
renduTP2/images/tab_insert2.png
renduTP2/images/tab_insert2.png
renduTP2/images/tab_insert2.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_insert2meme.png

23.9 KiB | W: | H:

renduTP2/images/tab_insert2meme.png

153 KiB | W: | H:

renduTP2/images/tab_insert2meme.png
renduTP2/images/tab_insert2meme.png
renduTP2/images/tab_insert2meme.png
renduTP2/images/tab_insert2meme.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_rapide2.png

17.6 KiB | W: | H:

renduTP2/images/tab_rapide2.png

129 KiB | W: | H:

renduTP2/images/tab_rapide2.png
renduTP2/images/tab_rapide2.png
renduTP2/images/tab_rapide2.png
renduTP2/images/tab_rapide2.png
  • 2-up
  • Swipe
  • Onion skin
renduTP2/images/tab_rapide2mem.png

22.6 KiB | W: | H:

renduTP2/images/tab_rapide2mem.png

147 KiB | W: | H:

renduTP2/images/tab_rapide2mem.png
renduTP2/images/tab_rapide2mem.png
renduTP2/images/tab_rapide2mem.png
renduTP2/images/tab_rapide2mem.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -17,7 +17,7 @@ int main(int argc, char *argv[])
char typeTable = argv[2][0];
char typeAlgo = argv[3][0];
long *tab = malloc(sizeof(long) * taille);
int *tab_perf = malloc(sizeof(int) * 3);
long *tab_perf = malloc(sizeof(long) * 3);
long MAX = 10000;
genTable(tab, taille, typeTable, MAX);
......@@ -30,7 +30,7 @@ int main(int argc, char *argv[])
monitor_triRapide(tab, taille,tab_perf);
printf("%d %d %d \n",tab_perf[0],tab_perf[1],tab_perf[2]);
printf("recursion : %ld comparaison: %ld permutation: %ld \n",tab_perf[0],tab_perf[1],tab_perf[2]);
break;
case 'i':
......
......@@ -6,9 +6,9 @@
int recursion = 0;
int comparaison = 0;
int permutation = 0;
int* tab_perf;
long* tab_perf;
void monitor_triRapide(long* A, size_t n, int* tab) {
void monitor_triRapide(long* A, size_t n, long* tab) {
tab_perf = tab;
monitor_sousTriRapide(A, 0, n);
}
......
......@@ -4,6 +4,6 @@
size_t monitor_partition(long* A, size_t first, size_t n);
void monitor_permuter(long* A,size_t i,size_t j);
void monitor_sousTriRapide(long* A, size_t first, size_t n);
void monitor_triRapide(long* A, size_t n,int* tab);
void monitor_triRapide(long* A, size_t n,long* tab);
No preview for this file type
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment