TP6 Correction list.c

This commit is contained in:
Geoffrey Frogeye 2017-03-29 11:59:21 +02:00
父節點 04bb2bec3a
當前提交 f7e3478fce
共有 2 個文件被更改,包括 2 次插入1 次删除

查看文件

@ -19,6 +19,7 @@ void insertinList(Liste* mylist, int el)
{
Cell* newCell=(Cell*) malloc(sizeof(Cell));
newCell->key=el;
newCell->nextC=*mylist;
*mylist=newCell;
}

查看文件

@ -3,7 +3,7 @@
#include<stdlib.h>
#include<string.h>
#include <listechaines.h>
#include "listechaines.h"
//Affichage de la liste en ligne
void afficher_liste(Liste l) {