Home
Previous
Next



311.ins.c


void insert( key, r ) typekey key; dataarray r; { extern int n; if ( n>=m ) Error /*** Table is full ***/; else r[n++].k = key; }

C source - Pascal source





<(c) Addison-Wesley Publishing Co. Inc.