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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-06
|
384 b
|
9 lines
/*
* SPLAY.H -- function prototypes for splay tree access
*/
struct node { long data; struct node *left,*right; };
struct node *splay (long x, node *root);
struct node *splayinsert (long x, node *root);
struct node *splaydelete (long x, node *root);