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-Thread: 103376,43550b9aa620b16b X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news2.google.com!news.maxwell.syr.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!peer-uk.news.demon.net!kibo.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: multiway tree Date: Tue, 17 May 2005 21:52:31 +0100 Organization: Pushface Message-ID: References: <1116271251.882713.42960@g49g2000cwa.googlegroups.com> NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1116363151 4232 62.49.19.209 (17 May 2005 20:52:31 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Tue, 17 May 2005 20:52:31 +0000 (UTC) Cancel-Lock: sha1:XtzWRxR7qrjfvGiBzsiMFvmfl4g= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin) Xref: g2news1.google.com comp.lang.ada:11071 Date: 2005-05-17T21:52:31+01:00 List-Id: nicolas.blanpain@cegetel.net writes: > Where can i found implementation (or algorithms) of multiway tree ? The Booch Components at http://booch95.sourceforge.net/ include a multiway tree. Interestingly, while looking at how to represent trees to make unit tests easier, I found that the natural representation was as a list .. I expect no one else will be surprised. And of course if you were programming in Lisp every data structure would have to be a list .. I guess it's just the operations that make a structure one thing or another. Light dawns.