[Python] Determinazione altezza albero
Alberto Granzotto
agranzot a gmail.com
Gio 5 Dic 2013 11:55:12 CET
On Thu, Dec 5, 2013 at 12:54 AM, Dario Bertini <berdario a gmail.com> wrote:
> >>> def height(tree):
> ... if len(tree) == 0:
> ... return 1
> ... else:
> ... return 1+max(map(height, tree))
>
bello, molto elegante l'uso di map con la funzione ricorsiva.
-------------- parte successiva --------------
Un allegato HTML è stato rimosso...
URL: <http://lists.python.it/pipermail/python/attachments/20131205/3365dbe4/attachment.html>
Maggiori informazioni sulla lista
Python