[Home]
[Contents]
[Chapter]
[Previous Algorithm]
[Next Algorithm]


Sorted list inspection


typekey inspect( pq ) list pq; {if (pq==NULL) Error /* inspect an empty PQ */; else return( pq->k ); };

C source (511.insp.c)



© Addison-Wesley Publishing Co. Inc.