Look up is related to indexes and hash tables. It is the action of accessing fastly to an item in a large collection thanks to a index (a so-called lookup table).
41
votes
9answers
7k views
How to get the Country according to a certain IP?
Does anyone know of a simple way to retrieve the country for a given IP Address? Preferably in ISO_3166-1 format?
25
votes
4answers
2k views
What is a practical way to model lookup tables in Domain Driven Design (DDD)?
I'm just learning DDD (Eric Evans book is open in front of me) and I've come across a problem that I can't find an answer for. What do you do in DDD when you're just trying to get a simple list of ...
22
votes
5answers
33k views
how can I lookup a Java enum from its string value?
I would like to lookup an enum from its string value (or possibly any other value). I've tried the following code but it doesn't allow static in initialisers. Is there a simple way?
public enum ...
20
votes
13answers
14k views
Which is faster, Hash lookup or Binary search?
When given a static set of objects (static in the sense that once loaded it seldom if ever changes) into which repeated concurrent lookups are needed with optimal performance, which is better, a ...
20
votes
4answers
6k views
What is the point of Lookup<TKey, TElement>?
The MSDN explains Lookup like this:
A Lookup<TKey, TElement>
resembles a Dictionary<TKey,
TValue>. The difference is that a
Dictionary<TKey, TValue> maps keys to single ...
20
votes
2answers
5k views
Function with same name but different signature in derived class
I have a function with the same name, but with different signature in a base and derived classes. When I am trying to use the base class's function in another class that inherits from the derived, I ...
16
votes
7answers
533 views
In R, What is the difference between df[“x”] and df$x
Where can I find information on the differences between calling on a column within a data.frame via:
df <- data.frame(x=1:20,y=letters[1:20],z=20:1)
df$x
df["x"]
They both return the "same" ...
14
votes
8answers
5k views
Lookup Tables Best Practices: DB Tables… or Enumerations
If we have to store the available positions at a company (i.e. Manager, Team Lead, ... etc). What are the best practices for storing it? I have two opinions with comments... "sure, welcoming yours"
...
10
votes
6answers
291 views
What is the proper way to track indexes in python?
Right now I am tracking my index in side the loop like this
index = 0
for entry in longList:
if entry == 'foo':
print index
index += 1
is there a better way to do this?
9
votes
8answers
8k views
Which is faster to find an item in a hashtable or in a sorted list?
Which is faster to find an item in a hashtable or in a sorted list?
9
votes
8answers
15k views
Reverse DNS lookup in perl
How do I perform a reverse DNS lookup, that is how do I resolve an IP address to its DNS hostname in Perl?
9
votes
9answers
465 views
What makes table lookups so cheap?
A while back, I learned a little bit about big O notation and the efficiency of different algorithms.
For example, looping through each item in an array to do something with it
foreach(item in ...
9
votes
3answers
8k views
How to implement a dictionary (Trie vs HashTable and important issues)?
I've ran across several questions and articles saying that dictionary implementation in java is done best using tries. But most of them didn't address important issues, as far as I saw it. So, next is ...
9
votes
3answers
255 views
Different behavior for qualified and unqualified name lookup for template
How should this code behave? It calls generic function ignoring my overload if I use qualified name in call_read() function; and it calls overload first and then generic version if I use unqualified ...
9
votes
2answers
180 views
Making a grid-like data type in haskell
Problem
I've been wondering how this could be done efficiently for a while, but for some reason I have been unable to do it. I need to model a rectangular grid, where each field contains some data.
...
8
votes
1answer
3k views
What is the relationship between java:comp/env and java:global?
What is the relationship between java:comp/env and java:global (regarding 3.1 spec)?
Seems like java:comp/env contains specific to EJB references.
What means "specific" in this case?
7
votes
8answers
498 views
What is the Fastest Way to Check for a Keyword in a List of Keywords in Delphi?
I have a small list of keywords. What I'd really like to do is akin to:
case MyKeyword of
'CHIL': (code for CHIL);
'HUSB': (code for HUSB);
'WIFE': (code for WIFE);
'SEX': (code for SEX);
...
7
votes
6answers
963 views
Very low cost hash function
I need a hash function for a Look Up table, so that if my values are from 0 to N, I need a hash function that give me a value from 0 to n, being n << N. Another piece of information is that I ...
7
votes
1answer
155 views
Speeding up array lookup after traversing?
I have a 123MB big intarray, and it is basically used like this:
private static int[] data = new int[32487834];
static int eval(int[] c)
{
int p = data[c[0]];
p = data[p + c[1]];
p = ...
6
votes
8answers
1k views
Is there a publicly available list of the US States in machine readable form?
Where can I find a list of the US States in a form for importing into my database?
SQL would be ideal, otherwise CSV or some other flat file format is fine.
Edit: Complete with the two letter state ...
6
votes
2answers
240 views
Is there a way to get an item from a set in O(1) time? [duplicate]
Possible Duplicate:
Python: Retrieve items from a set
Consider the following code:
>>> item1 = (1,)
>>> item2 = (2,)
>>> s = set([item1, item2])
>>> s
...
6
votes
7answers
353 views
Optimization Headache - removing if's from Look Up Table
I'm trying to optimize the following piece of code, which is a bottleneck in my application.
What it does: It takes the double values value1 and value2 and tries to find the maximum including a ...
6
votes
4answers
852 views
Fast lookup of List<T>
I have two generic lists. Let's say they are List< A > and List< B >.
ClassA has a property, which type is List< B >. This property contains B type objects, which are filtered by ...
6
votes
1answer
2k views
SQL/SSIS DataWareHouse Fact table loading, best practices?
I am building my first datawarehouse in SQL 2008/SSIS and I am looking for some best practices around loading the fact tables.
Currently in my DW I have about 20 Dimensions (Offices, Employees, ...
5
votes
8answers
698 views
What Http code should i return for “Thing not found”?
i'm constructing a web-service that is used, in this particular case, to ask for information about a patron.
Let's say, for the sake of argument, that the lookup web hit is:
GET /patrons/619 ...
5
votes
12answers
1k views
Optimizing for speed - 4 dimensional array lookup in C
I have a fitness function that is scoring the values on an int array based on data that lies on a 4D array. The profiler says this function is using 80% of CPU time (it needs to be called several ...
5
votes
3answers
948 views
Enum vs Reference table vs Lookup class
While I'm designing a MySQL database for a dating website, I have come with the doubt of how to store the referenced data. Currently the database has 33 tables and there are nearly 32 different fields ...
5
votes
2answers
98 views
Why is Lookup immutable in C#?
Unlike Dictionary, you cannot construct a Lookup by adding elements one by one. Do you happen to know the reason?
Lookup is just like multimap in C++; why can't we modify it in C#? If we really ...
5
votes
2answers
578 views
Approximate lookup in R
I have the following lookup table:
lkp <- data.frame(
x=c(0,0.2,0.65,0.658,1.3,1.76,2.7),
y=c(1,1,1,0.942,0.942, 0.92, 0.89)
)
I would like to get the value of Y of a ...
5
votes
2answers
1k views
Getting keys from a Lookup
How do I get the collection of keys from a Lookup<> I created through the .ToLookup() method?
I have a lookup which maps int-values to groups of instances of a custom class. I need a collection of ...
5
votes
6answers
3k views
How can I extract ArrayList from HashMap and loop through it in Java?
I have set up a HashMap like so:
Map<String, ArrayList<String>> theAccused = new HashMap<String, ArrayList<String>>();
... and I populate this by storing for every name ...
5
votes
5answers
524 views
Find-or-insert with only one lookup in c# dictionary
I'm a former C++/STL programmer trying to code a fast marching algorithm using c#/.NET technology...
I'm searching for an equivalent of STL method "map::insert" that insert a value at given key if ...
5
votes
1answer
366 views
How do I convert a Dictionary to a Lookup?
I have a Dictionary that has a signature: Dictionary<int, List<string>>. I'd like to convert it to a Lookup with a signature: Lookup<int, string>.
I tried:
Lookup<int, ...
5
votes
4answers
320 views
Lookup table for unhashable in Python
I need to create a mapping from objects of my own custom class (derived from dict) to objects of another custom class. As I see it there are two ways of doing this:
I can make the objects hashable. ...
5
votes
5answers
1k views
Lookup class use enum, struct, public const, something else?
I'm creating a lookup class so a constant value will be used throughout all the projects.
The thing is, there are several solutions to create such a thing. I could create a single class with enums, ...
5
votes
2answers
4k views
What is the best way to create a whois lookup? [closed]
I want add a domain registration in a website written with PHP. So I need a whois lookup service. What do I need to do? What's are its steps?
Do I need a database, API or ... ? Help me please
5
votes
2answers
1k views
Getting a full copy of the WHOIS database
I'm interested in getting access to a full WHOIS database in order to expand on a domain-profile project I'm working on. I know ARIN provides this database only to non-commercial researchers and every ...
5
votes
4answers
964 views
Python __setattr__ and __getattr__ for global scope?
Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like
f(x) = some_stuff(a,b,c)
and have Python, ...
5
votes
1answer
228 views
Excel lookup vector based on another formula
My spreadsheet has 2 sheets.
Sheet 1 contains 30 days worth of values.
Each day's values are a maximum of 19 rows, consisting of names and correspoding values. The names that will appear for each ...
5
votes
1answer
3k views
Many to many lookups in Django
This is probably insultingly simple and worthy of a Nelson Muntz laugh, but I'm having a real braindead moment tryng to make many to many connections across various model relationships.
I have the ...
5
votes
1answer
289 views
Generic Linear Piecewise Lookup Table
I am looking for a generic optimized lookup object that takes a function f(x) and creates a linear piecewise approximation with configurable parameters for the range of x and the intervals of ...
5
votes
5answers
3k views
Reverse Phone Number Lookup APIs
Does anyone have experience leveraging a third party API to perform reverse phone number lookups?
Given a US phone number (mostly business, many will be toll-free including some of the fancy new area ...
4
votes
8answers
2k views
Decision between storing lookup table id's or pure data
I find this comes up a lot, and I'm not sure the best way to approach it.
The question I have is how to make the decision between using foreign keys to lookup tables, or using lookup table values ...
4
votes
7answers
2k views
A dictionary object that uses ranges of values for keys
I have need of a sort of specialized dictionary. My use case is this: The user wants to specify ranges of values (the range could be a single point as well) and assign a value to a particular range. ...
4
votes
3answers
632 views
Lookup tables in OCaml
I would like to create a lookup table in OCaml. The table will have 7000+ entries that, upon lookup (by int), return a string. What is an appropriate data structure to use for this task? Should the ...
4
votes
5answers
607 views
Additional hash lookup using 'exists'?
I sometimes access a hash like this:
if(exists $ids{$name}){
$id = $ids{$name};
}
Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...
4
votes
3answers
804 views
Initialising Lookup<int,string>
Hi all how do i declare a new lookup class for a property in the object intialiser routine in c#?
eg
new Component() { ID = 1, Name = "MOBO", Category = new Lookup<int,string>}
the category ...
4
votes
7answers
433 views
Convert list of objects to a list of integers and a lookup table
To illustrate what I mean by this, here is an example
messages = [
('Ricky', 'Steve', 'SMS'),
('Steve', 'Karl', 'SMS'),
('Karl', 'Nora', 'Email')
]
I want to convert this list and a ...
4
votes
3answers
1k views
Storing a list of 1 million key value pairs in python
I need to store a list of 1 million key-value pairs in python. The key would be a string/integer while the value would be a list of float values. For example:
...
4
votes
5answers
1k views
What is the best data structure for this in-memory lookup table?
I need to store a lookup table as an instance member in one of my classes. The table will be initialized when the object is constructed. Each "row" will have 3 "columns":
StringKey (e.g., "car")
...