Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Foreach Loops

by hubb0r (Pilgrim)
on Mar 15, 2005 at 19:20 UTC ( [id://439725]=note: print w/replies, xml ) Need Help??


in reply to Foreach Loops

I guess what I was really looking for was some type of function like:
get_index_of($line)
which would provide me just that, the current index. Either way what you've all provided me with is basically the different methods that I've already been using. I basically was just looking for something that fit the generic foreach loop without having to fall back to explicitly indexing the array.

Thanks for your input

Replies are listed 'Best First'.
Re^2: Foreach Loops
by spurperl (Priest) on Mar 16, 2005 at 10:58 UTC
    Such a get_index_of operator would be inefficient, hence it doesn't make much sense for Perl to have it.

    Think about it - an array is a linear structure meant specifically for random-access of index->element. To find the index of some element you will either have to go through the array looking for the element - this is O(N). You can have more time-efficient algorithms at the cost of space, like having a "mirror" hash of element->index.

    As for your original problem, I also sometimes feel a little itch when I have to give up foreach once access to elements other-than-the-current is required.

Log In?
Username:
Password:

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

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

    No recent polls found