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

Re: hashing intervals

by sundialsvc4 (Abbot)
on Jul 30, 2013 at 03:11 UTC ( [id://1046940]=note: print w/replies, xml ) Need Help??


in reply to hashing intervals

Your data could be expressed in an SQL (or SQLite) table with columns (low, high, value).   If the problem were to be approached in this way, the values associated with an entire table-full of values-of-interest could be obtained using a simple INNER JOIN query, e.g.:

SELECT a.search_for, b.code
FROM table_of_values a
INNER JOIN table_of_ranges b
ON (a.search_for IS BETWEEN b.low AND b.high)
SORT BY a.search_for

Obviously, “it all depends on what you are doing and on the context in which you are doing it,” but this eliminates the need to “write a Perl program” altogether.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-26 05:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found