Procédure inserer(L: listechainée, e: élément, pp: ptr) début allouer(p) *p.val := e *p.lien := *pp.lien *pp.lien := p fin |
Procédure supprimer(L: listechainée, pp: ptr) début p := *pp.lien *pp.lien := *p.lien restituer(p) fin |
Please disable your ad blocker and refresh the window to use this website.