home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!haven.umd.edu!darwin.sura.net!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!cleveland.Freenet.Edu!br707
- From: br707@cleveland.Freenet.Edu (Mike L. Melamed)
- Newsgroups: comp.lang.pascal
- Subject: Re: Saving/Reading BinaryTrees.
- Date: 21 Nov 1992 03:37:23 GMT
- Organization: Case Western Reserve University, Cleveland, Ohio (USA)
- Lines: 30
- Message-ID: <1ekatkINN9ta@usenet.INS.CWRU.Edu>
- NNTP-Posting-Host: slc10.ins.cwru.edu
-
-
- Ok, I am sorry, I think I stated my question incorrectly...
-
- Here is my Tree structure:
-
- CONST
- MaxChildren = 99;
- MaxFiles = 99;
-
- TYPE
-
- RecPtr = ^Rec;
- Rec = RECORD
- Name, Date, Time: STRING [12];
- Files : ARRAY [ 1..MaxFiles ] OF STRING [12];
- FileSize, SizeTotal, SizeLeft : INTEGER;
- ChildID, CurrentChild : INTEGER;
- Child, PrevChild : ARRAY [ 1..MaxChildren ] OF RecPtr;
- END;
-
-
- Pay extra attention to Child..
-
-
- Oh, almost forgot, I am using Turbo Pascal 6.0..
-
- [T]alk [To] [Y]ou [L]ater,
- Mike
-
- --
-