Find: the perl golf best solution for a subroutine that returns the node that $s is in, or 0 if no such node exists. Do not assume that the tree is well balanced. For avoiding problems with lots of excess characters, assume that you can avoid the 'use strict'.
My current best attempt is 95 characters:
sub f{($s,$t)=@_;while($t->{d}ne$s){$t=($s lt $t->{d})?$t->{l}:$t->{r} +;return if$t==0;}return$t;}
|
---|
Replies are listed 'Best First'. | |
---|---|
(tye)Re: Golf: Tree searching
by tye (Sage) on Apr 19, 2001 at 22:06 UTC | |
by tilly (Archbishop) on Apr 20, 2001 at 02:22 UTC | |
by tye (Sage) on Apr 20, 2001 at 09:44 UTC | |
Re: Golf: Tree searching
by japhy (Canon) on Apr 19, 2001 at 22:17 UTC | |
by twerq (Deacon) on Apr 19, 2001 at 22:48 UTC | |
by tilly (Archbishop) on Apr 20, 2001 at 01:55 UTC | |
by tadman (Prior) on Apr 20, 2001 at 06:12 UTC | |
by tilly (Archbishop) on Apr 20, 2001 at 07:19 UTC | |
| |
Re: Golf: Tree searching
by koolade (Pilgrim) on Apr 19, 2001 at 23:01 UTC | |
Re: Golf: Tree searching
by indigo (Scribe) on Apr 19, 2001 at 23:03 UTC | |
Re: Golf: Tree searching
by premchai21 (Curate) on Apr 19, 2001 at 22:58 UTC |