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=0.1 required=5.0 tests=BAYES_05,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c8e8f6fa5e81021f X-Google-Attributes: gid103376,public From: "James Kerr" Subject: Re: Looking for Information on Symbolized Search Trees Date: 2000/04/23 Message-ID: <956500552.442995@karri.southwest.com.au>#1/1 X-Deja-AN: 614632274 Cache-Post-Path: karri.southwest.com.au!unknown@jarrah-43.southwest.com.au References: <956391873.399710@karri.southwest.com.au> <8dsbn2$1v0$1@nnrp1.deja.com> <956453655.636707@karri.southwest.com.au> <8dv0gd$ps1$1@nnrp1.deja.com> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Trace: news.iinet.net.au 956500614 20229 news@203.16.9.20 Organization: SouthWest Internet Systems X-MSMail-Priority: Normal X-Cache: nntpcache 2.4.0b3 (see http://www.nntpcache.org/) Newsgroups: comp.lang.ada Date: 2000-04-23T00:00:00+00:00 List-Id: Basically it is an assignment that I have been given, and before anyone goes of saying do it yourself, I am, but whenever you do any assignment it is good to get some references and basic knowledge on what it is the assignment is about. Okay for anyones interest, a symbolized search tree is an abstract data type that implements a mulitway tree, where balance conditions are not appliciable. The symbolized part means it uses symbols as its data, IE. for our assignment the symbol list is made up of the ASCII character set, so basically we are plugging in valuse such as: a, J, &, * etc etc. Anyway the assignment is going along okay, there are still a few things i need to work out, and still haven't decided which procedures i am going to do iteratively and which ones I am not. One quick question away from the above mentioned stuff, If I have a procedure declaration such as procedure Test (Array1: in out array_type; Result: out Integer) is if i want to call the procedure recursively from in itself then the value for result that i may have already calculated will be of no use as result is only being passed out and not in?? any help would be appreciated James