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


Data structure definition for binary trees


type tree = ^node; node = record k : typekey; left, right : tree end;

C source (341.data.c) Pascal source (341.data.p)



© Addison-Wesley Publishing Co. Inc.