http://www.perlmonks.org?node_id=1024003


in reply to Re: How can one delete an element and it corresponding values from the array of arrays?
in thread How can one delete an element and it corresponding values from the array of arrays?

Hi tobyink

Thanks for your suggestions. I have noticed that you have mentioned in previous thread that a set of arrays is a poor choice of data structures. Honestly speaking, I find the Data structures in perl (like arrays of arrays, hashes of arrays, arrays of hashes etc.) very complicated for my understanding because of diverse use of parentheses & brackets and because of my recent introduction to perl as a biologist. Perl is the first computer language that I have been trying to learn through personal endeavor. I donot have any formal training on computer and its applications. I hope you will understand my limitations in understanding a computer language. Moreover, it may sound strange that I started learning how to use a computer(a laptop) since 22nd February 2008 when I was given a laptop by the university. Prior to that I could not afford a laptop because of its high cost.

Regards,

  • Comment on Re^2: How can one delete an element and it corresponding values from the array of arrays?

Replies are listed 'Best First'.
Re^3: How can one delete an element and it corresponding values from the array of arrays?
by SuicideJunkie (Vicar) on Mar 18, 2013 at 15:19 UTC

    The nice thing is that there are really only three things to learn, and then the world of data structures is all yours.

    You've got Arrays, and you've got Hashes, and then you've got references. Once you wrap your head around those three, and see the recursive possibilities, you can make pretty much anything.