Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'tree': 0.05; 'friend.': 0.07; 'tries': 0.07; 'lawrence': 0.09; 'library?': 0.09; 'escribi\xc3\xb3:': 0.16; 'from:addr:ricaraoz': 0.16; 'reedy': 0.16; 'subject:library': 0.16; 'wrote:': 0.18; 'thanks.': 0.20; '>>>': 0.22; 'header:User-Agent:1': 0.23; 'header:In-Reply-To:1': 0.27; 'another': 0.32; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'useful': 0.36; 'message-id:@gmail.com': 0.38; 'tools,': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'skip:u 10': 0.60; 'from:charset:utf-8': 0.61; 'simple': 0.61; 'kind': 0.63; 'url:ru': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=iyURdfmiHtFKF/QSRYx/UH2hAG42RG6nXY+nwRs+tXY=; b=F0brYQx6F6PK09nYGsL2hrOQQbnrUPO7Ro43SAwaS0mew/p2IJ0MD/7TLMJk6w8uSm F4CP7YdYx6eyTMMmlvHVYapcTqFSKSF/Qc6AEPaSRUQAeJ8xYEAkPvbGxJ4aoKWzYXgL 9RBjmYJdZ7n77BRU2DRniGVvPDUCwpGJtOYHB3525ZvPtQV8w8gO1ahm64Ri1/RHff5Y 3W0eru3pST51PwpzPngslcu6p2OmNjNi79cQHLbvjK/e8sfjhuZzu4KzkuHgwbiKHqlc 7MYivLQiWMorJmWforjJwfADjegEt0G4OsTRNFk/wACK3pC35HTsHYy1JjHPETQ/aqkB y7/A== X-Received: by 10.236.115.73 with SMTP id d49mr8121815yhh.12.1386885717892; Thu, 12 Dec 2013 14:01:57 -0800 (PST) Date: Thu, 12 Dec 2013 19:01:56 -0300 From: =?UTF-8?B?UmljYXJkbyBBcsOhb3o=?= User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Tree library - multiple children References: <52A9FD0A.9080804@gmail.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1386885727 news.xs4all.nl 2960 [2001:888:2000:d::a6]:54233 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:61766 El 12/12/13 18:01, Mark Lawrence escribió: > On 12/12/2013 18:56, Terry Reedy wrote: >> On 12/12/2013 1:14 PM, Ricardo Aráoz wrote: >>> I need to use a tree structure. Is there a good and known library? >> >> Search tools, both for the web and on pypi.python.org, are your friend. >> > > stackoverflow is another useful site to search and see also > http://kmike.ru/python-data-structures/. > Nice site, thanks. Unfortunately there are tries and all kind of search trees, but not simple unbalanced, multiple children trees. Thanks.