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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a6dbac911d455814 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-12 09:00:46 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!colt.net!dispose.news.demon.net!demon!diablo.dera.gov.uk!dera!not-for-mail From: "Kevin Rigotti" Newsgroups: comp.lang.ada Subject: Re: looking for a fast re-usable non-pointer data structure .... Date: Mon, 12 Nov 2001 17:00:25 -0000 Organization: Defence Evaluation & Research Agency Message-ID: <9sov52$ssl$1@trog.dera.gov.uk> References: <9sookc$d83$1@neptunium.btinternet.com> NNTP-Posting-Host: 194.61.191.135 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Xref: archiver1.google.com comp.lang.ada:16340 Date: 2001-11-12T17:00:25+00:00 List-Id: What doesn't it like? Are you trying to return a limited type from a remotely dispatched function, or some other thing that would need T'Read and T'Write but cannot have them. If the tree is reasonably complete you wouldn't lose much by mapping the AVL tree onto an array and just marking the unused nodes in some way. Kevin -- ATC Systems Group, DERA, St Andrews Road, Malvern, Worcestershire WR14 3PS, UK Phone +44 (0)1684 89 69 11, fax +44(0)1684 89 41 09 DERA disclaimers and restrictions apply, details on request Tony Gair wrote in message news:9sookc$d83$1@neptunium.btinternet.com... > Does anyone know of reasonably fast data structure to store a large amount > of records. > > The reason I want this is that I have a protected object which uses an avl > tree from the booch components which I want to use with the distributed > annex, which currently does not like my avl tree at all. > > Any ideas, has anyone used an avl tree as a remote protected objected > object with the distributed annex, > Should I dump the annex...or the avl tree > >