in reply to Re^4: Hash value interpolation
in thread Hash value interpolation

the reason for the two hashes is because I wanted to simplify the code

You didn't do that. Your data structure is horribly complex. What's the point of having a hash for every key! (And don't say "1" and "2" could be the same string because then your goal makes no sense at all. There wouldn't be a right "hm" to fetch.)

Is there a performance gained by using an array over the hash?

Performance? Not really. The problem is that emulating a hash using an array is one more thing that can go wrong compared to just using an array.

Replies are listed 'Best First'.
Re^6: Hash value interpolation
by csarid (Sexton) on Feb 18, 2009 at 05:14 UTC
    I see your point. I guess I can just pull the value from standard array just as easily based on the position. I'll give that a try. Thanks for the feedback do appreciate it.