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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!gandalf.srv.welterde.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: meaningfully/compellingly "advertising" Ada on StackOverflow Date: Fri, 18 May 2018 15:52:18 -0500 Organization: JSA Research & Innovation Message-ID: References: <6420bab2-0aef-4d36-b978-525e4de45e7e@googlegroups.com> <7fae6587-8714-47c7-bba6-bf220dff969c@googlegroups.com> Injection-Date: Fri, 18 May 2018 20:52:19 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="3183"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.7246 Xref: reader02.eternal-september.org comp.lang.ada:52445 Date: 2018-05-18T15:52:18-05:00 List-Id: "John Perry" wrote in message news:7fae6587-8714-47c7-bba6-bf220dff969c@googlegroups.com... > On Thursday, May 17, 2018 at 4:25:09 PM UTC-5, Randy Brukardt wrote: >> Did you try implementing that with the Tree container as opposed to using >> a >> raw nodes? > > No; I was just translating the C++ version. It uses a custom container, >and I thought the point was to imitate that. [glances at Rationale for Ada > 2012] Are we talking about multiway trees here? I don't see any trees > otherwise. Yes, of course. The multiway tree is a generalization of more specific types like a binary tree. It's really a tree of lists, and most real-world trees (like HTML, parse trees, etc.) map easily to it. Randy.