Cette procédure insèrer un élément x dans un tableau T à une position p.
Procédure insertion(@v:tab; n,x,p:entier): Début Pour i de n à p+1 (pas= -1) faire t[i] = t[i-1] fin pour t[p] = x fin