Design
liao.lst
Associated article: Self-Adjusting Data Structures
Tags: Design
_SELF-ADJUSTING DATA STRUCTURES_
by Andrew M. Liao
[LISTING ONE]
{*** Singly linked move-to-the front list ***}
{*** Contents: "LInsert", "Mtffind" ***}
{ Data Structure:
ptr=^node;
node=RECORD rec:item; next:ptr; END; }
PROCEDURE LInsert(arg:item; VAR root:ptr);
VAR ...


