Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: A more elegant way to filter a nested hash?

by pwagyi (Monk)
on May 31, 2018 at 03:28 UTC ( [id://1215521]=note: print w/replies, xml ) Need Help??


in reply to A more elegant way to filter a nested hash?

You can improve by writing iterative version instead of recursive version. :)

  • Comment on Re: A more elegant way to filter a nested hash?

Replies are listed 'Best First'.
Re^2: A more elegant way to filter a nested hash?
by Anonymous Monk on May 31, 2018 at 08:52 UTC

    You can improve by writing iterative version instead of recursive version. :)

    Hi,

    What is improved with an iterative version? Elegance?

      The biggest savings is the call stack. In general, the overhead involved in moving into and out of subroutines is not negligible -- profile if you need to know the cost in your particular scenario. Iterative solutions with work queues can also be much more intelligible and may scope to your data more elegantly.

      However, from a true optimization perspective, if it runs and if it's documented, your effort is likely better spent improving a different chunk of code rather than worrying about aesthetics.


      #11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

        I agree with most of what you said.

        IMHO recursive solutions are easier to write and maintain, I'd only translate them to iterative if performance mattered.

        Point is you still need some kind of call stack* which needs to be simulated then.

        Cheers Rolf
        (addicted to the Perl Programming Language :)
        Wikisyntax for the Monastery

        *) in this case the last positions in the tree and remaining keys for each sub hash.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1215521]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 07:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found