Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
10answers
4k views

IP to Country?

Does anyone know of a simple way to retrieve the country for a given IP Address? Preferably in ISO_3166-1 format?
19
votes
4answers
1k 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 ...
14
votes
13answers
7k 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 ...
13
votes
4answers
2k 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 ...
12
votes
2answers
3k 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 ...
10
votes
6answers
233 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?
10
votes
8answers
3k 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" ...
9
votes
3answers
88 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
3answers
2k views

Google like edit/combo control for Delphi?

Everyone probably knows what I mean, but to clarify the control would need to: Fire an event when user edits the text. The event would provide a SuggestionList: TStrings which you could fill with ...
8
votes
9answers
411 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 ...
7
votes
8answers
370 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
7answers
9k 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?
6
votes
7answers
199 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
2answers
3k 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 ...
6
votes
8answers
4k 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?
6
votes
8answers
635 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 ...
5
votes
2answers
106 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
4answers
280 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 ...
5
votes
1answer
73 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
4answers
218 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
531 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
4answers
689 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
12answers
740 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
9k 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 ...
5
votes
8answers
464 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 ...
4
votes
3answers
137 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
2answers
134 views

python: fast dictionary word lookup with wildcards*

Given a text, which is split into a list of words, I want to lookup each of the words in an dictionary of words, which too is read from a text-file and split('\n'). Rather than checking if each word ...
4
votes
1answer
126 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?
4
votes
3answers
177 views

XSLT sum by lookup value from another file

I want to get the total of a specific student from following 2 XML files: --- File: mark.xml ---- <marks> <mark type="HD">10</mark> <mark type="D">8</mark> ...
4
votes
2answers
162 views

Best practice for saving related constants?

In my game I have a enum (about 200 entrys long) with different GameEntityTypes. When the game is saved, only an array of GameEntityType is written to the savefile. To reconstruct the gameworld, and ...
4
votes
1answer
1k views

C# System.Linq.Lookup Class Removing and Adding values

I'm using Lookup class in C# as my prime data container for the user to select values from two Checked List boxes. The Lookup class is far easier to use than using the class Dictionary>, however I ...
4
votes
4answers
184 views

Speed of looking up .NET Dictionary value by key?

I have a dictionary of 10000 Product/Colour/Size combinations which I have created with something like: AllRecords = DB.ProductColourSizes _ .ToDictionary(function(b) ...
4
votes
6answers
1k 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 ...
4
votes
4answers
603 views

Java: How do I get the IP of the local interface that can reach a remote IP?

I have a Java application that registers a server component in a service provider, and then sends the service name to a client. The client uses the service name to get an address out of the service ...
4
votes
2answers
282 views

Two-phase lookup: can I avoid “code bloat”?

Two-phase lookup question: Is there a more synthetic way to write this code, i.e. avoiding all those using directives? Something like using CBase<T>; is what I would like, but it is not ...
4
votes
1answer
266 views

Using NHibernate with lookup tables

If you have a set of tables in the database that strictly consist of a string description and an ID, what is the best way to load these via NHibernate? So suppose I have a Sandwich class, and a ...
4
votes
7answers
613 views

checking words in a dictionary

I need to determine if an unknown 5 or 6 letter string is a valid word, i.e. is in the dictionary. I could submit the string/word to an online dictionary, but I need to check this string/word, which ...
4
votes
5answers
416 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
4answers
645 views

Cache lookup performance

We have a big winforms C# application, that's basically a frontend for some databases (CRUD stuff) and I'm trying to implement some in memory cache for business objects. Something like: ...
4
votes
5answers
926 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") ...
4
votes
6answers
718 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 ...
3
votes
4answers
102 views

Two-Dimensional Lookup in Excel 2010

I have a data that looks similar to this Tables contains more than one row label heading (stacked row label): |20% |30% | |25/01/11 |buy |1 |1.1 | | ...
3
votes
4answers
108 views

Best data structure for this problem?

I am using Java for this program, and I currently have a situation where I want to add key/value pairs to a table with integer keys, like add (1, "Bobby") add (6, "Sue") add (3, "Mary") add (8, ...
3
votes
4answers
141 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 ...
3
votes
5answers
275 views

In python, how can you retrieve a key from a dictionary?

I have a hashable identifier for putting things in a dictionary: class identifier(): def __init__(self, d): self.my_dict = d self.my_frozenset = frozenset(d.items()) def ...
3
votes
3answers
163 views

Python nested dictionary lookup with default values

>>> d2 {'egg': 3, 'ham': {'grill': 4, 'fry': 6, 'bake': 5}, 'spam': 2} >>> d2.get('spamx',99) 99 >>> d2.get('ham')['fry'] 6 I want to get value of fry inside of ham, if ...
3
votes
1answer
130 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 ...
3
votes
3answers
203 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 ...
3
votes
7answers
864 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. ...
3
votes
2answers
5k views

Getting JSON Key from Value or Inverting JSON Data

Getting single key from Value I would like to do a backwards selection from the following JSON. I'd like to extract the abbreviation for a particular state. In this situation, the abbreviation is the ...

1 2 3 4 5 8