home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PCTV3N1.ZIP / SPLAY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-06  |  384 b   |  9 lines

  1. /*
  2.  * SPLAY.H -- function prototypes for splay tree access
  3.  */
  4. struct node { long data; struct node *left,*right; };
  5.  
  6. struct node *splay (long x, node *root);
  7. struct node *splayinsert (long x, node *root);
  8. struct node *splaydelete (long x, node *root);
  9.