From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00,FREEMAIL_FROM, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,5d80f40bdd51947e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-11-03 07:20:05 PST Path: supernews.google.com!sn-xit-02!sn-xit-03!supernews.com!xfer13.netnews.com!netnews.com!fr.clara.net!heighliner.fr.clara.net!wanadoo.fr!not-for-mail From: "Franck" Newsgroups: comp.lang.ada Subject: Re: binary tree and files Date: Fri, 3 Nov 2000 16:20:41 +0100 Organization: Wanadoo, l'internet avec France Telecom Message-ID: <8tul32$c3p$1@wanadoo.fr> References: <8tuk7l$aq5$1@wanadoo.fr> NNTP-Posting-Host: aannecy-101-1-57.abo.wanadoo.fr X-Trace: wanadoo.fr 973264802 12409 193.251.22.57 (3 Nov 2000 15:20:02 GMT) X-Complaints-To: abuse@wanadoo.fr NNTP-Posting-Date: 3 Nov 2000 15:20:02 GMT X-Newsreader: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Xref: supernews.google.com comp.lang.ada:1747 Date: 2000-11-03T15:20:02+00:00 List-Id: just to correct something in my type type T_node; type Pt_tree is access T_Node; type T_Node is record name : T_name; G, D : Pt_tree; end record; Franck a �crit dans le message <8tuk7l$aq5$1@wanadoo.fr>... >hi ! > >i've got a pb : i don't know how to save a binary tree in a file, and then >load it from the file > >here are the type i use > > type T_node; > type Pt_tree is access T_Node; > > type T_Node is record > name : T_name; > G, D : Pt_Arbre; > end record; > >name contain name, surname, birthday etc... > >thanks for the help ;o) > >P.S :you can send the answer to kribal@caramail.com > >