Tagged Questions
The lookup-tables tag has no wiki summary.
10
votes
8answers
458 views
Fastest possible string key lookup for known set of keys
Consider a lookup function with the following signature, which needs to return an integer for a given string key:
int GetValue(string key) { ... }
Consider furthermore that the key-value mappings, ...
8
votes
4answers
308 views
C# way slower than Java in memory access with loops?
I have two different versions of poker hand evaluators from the internet. Both work with the same principial of using a big lookup table for performance.
For both versions I have java and c# code and ...
7
votes
2answers
294 views
Where to put compile-time-constant arrays?
Say I have an array storing the first 10 primes, like this:
const int primes[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29};
This is all very fine and simple as long as I have 1 .cpp file. However, if I ...
7
votes
2answers
444 views
What's the best way to do a lookup table in C?
I am working on an embedded C project. I have an LCD display and for each character there is a 5x7 dot matrix. To display a specific character you have to shift in 5 bytes that correlate with the dots ...
7
votes
7answers
866 views
How to determine the accuracy of Pi (π)
Optimizing a game we're developing, we're running into the phase where every CPU cycle won counts. We using radians for position calculations of objects circling around other objects and I want to cut ...
7
votes
4answers
3k views
Country, State, Province WebService?
Are there any good webservices out there that provide good lookup information for Countries and States/Provinces?
If so what ones do you use?
5
votes
4answers
213 views
Data structure with efficient manipulation and retrieval by both key and index
I'm looking for a data structure with the functionality of eg. the OrderedDictionary in .NET, that is to say an associative collection (i.e. one that associates a key with a value) that maintains ...
5
votes
2answers
93 views
Using a lookup table for regex patterns
I recently encountered a suggestion for the regex patterns utilised across our application code base to be pooled together into a lookup table, and retrieved from there rather than explicitly ...
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
2answers
2k views
Best way to flatten/denormalize SQL lookup tables?
I have a bunch of tables like this:
Lookup_HealthCheckupRisks
------------
ID Name
1 Anemia
2 Anorexic
3 Bulemic
4 Depression
...
122 Syphilis
PatientRisksOnCheckup
------------------
...
4
votes
4answers
423 views
Efficiency of arcsin computation from sine lookup table
I have implemented a lookup table to compute sine/cosine values in my system. I now need inverse trigonometric functions (arcsin/arccos).
My application is running on an embedded device on which I ...
4
votes
8answers
185 views
Should I use a code in my lookup table
I am woking on an Orable database and I am adding a couple of lookup tables.
The general question is should the lookup table contain a code and a description and the code be the FK back to the main ...
4
votes
6answers
3k views
gcc warning: braces around scalar initializer
I have look-up-table as defined below and I'm making use of GCC. When I compile I get warnings as
warning: braces around scalar initializer
What does this warning mean? How should I initialize this ...
4
votes
2answers
2k views
Creating a list of symbols in latex
I'm trying to get an auto generated list of symbols in my latex project. Here is the macro that I have so far...
\newcommand{\addsymbol}[3]{%
\symboldisplay{#1}{#2}\\%
\setelem{#3}{#1}
}
...
4
votes
2answers
173 views
what webserver / mod / technique should I use to serve everything from memory?
I've lots of lookuptables from which I'll generate my webresponse.
I think IIS with Asp.net enables me to keep static lookuptables in memory which I can use to serve up my responses very fast.
Are ...
3
votes
2answers
148 views
Is std::map table initialization optimized?
Considering the example at the end of the question, is the map object going to be created every time the function GetName() is called?
Or is the creation going to be optimized away and created as some ...
3
votes
1answer
84 views
Access LookUp table
i need to create a lookup table in Access, where all the abbreviations are related to a value, and if the abbreviation (in the main table) is null, then i want to show "Unknown"
i got the values ...
3
votes
2answers
261 views
What is L1/L2 cache behavior for LUTs and the alike?
Assuming a LUT of say 512KB of 64-bit double types. Generally speaking, how does the CPU cache the structure in L1 or L2?
For example: I access the middle element, does it attempt to cache the whole ...
3
votes
1answer
110 views
MySQL multiple Id lookups
I'm trying to add a full text search to a system. The query I want to write needs to involve multiple lookups followed by the search (if that's even possible).
I've got a table of teachers and a ...
3
votes
2answers
1k views
Loading the data for a Simulink Lookup Table from a file
I've built a Matlab/Simulink model that I'm using to simulate the performance of an underwater robotic vehicle that uses acoustics for various key navigation and localisation functions.
Since the ...
3
votes
3answers
229 views
benchmarking trig lookup tables performance gains vs cpp implementation
We are developing a real-time system that will be performing sin/cos calculations during a time critical period of operation. We're considering using a lookup table to help with performance, and I'm ...
3
votes
2answers
325 views
Creating a variable length color lookup table
I was wondering if anyone has any words of advice or could point me to any good resources regarding the creation of color lookup tables for image synthesis. In my application I have floating point ...
3
votes
1answer
494 views
Finding what hard drive sectors occupy a file
I'm looking for a nice easy way to find what sectors occupy a given file. My language preference is C#.
From my A-Level Computing class I was taught that a hard drive has a lookup table on the first ...
3
votes
3answers
399 views
Compile-time lookup array creation for ANSI-C?
A previous programmer preferred to generate large lookup tables (arrays of constants) to save runtime CPU cycles rather than calculating values on the fly. He did this by creating custom Visual C++ ...
3
votes
3answers
3k views
Small Tables in Python?
Let's say I don't have more than one or two dozen objects with different properties, such as the following:
UID, Name, Value, Color, Type, Location
I want to be able to call up all objects with ...
3
votes
2answers
192 views
What webservices do you use regularly and which do you wish were available?
I know that the USPS provides an handy XML over HTTP webservice for address information. What other webservices do you know of and use? What webservices do you wish you could access but can't find?
2
votes
2answers
40 views
Is there a simple way to create a javascript lookup table?
I'm looking for a simple way of looking up a value, using javascript, against a number of dimensions:
eg. (I'm going to use products and product options to describe this, the data is coming from a ...
2
votes
1answer
67 views
Simple lexical analysis java program
My little project is a lexical analysis program in which i have to take every word found in an arbitrary .java file and list every line it appears on in the file. I need to have one look up table ...
2
votes
2answers
136 views
Implement VHDL/Verilog only using lookup tables in Xilinx ISE
Is there any way of telling ISE to synthesize my VHDL/Verilog code into combinational circuits consisting only of look-up tables? I would like to avoid multiplexers, multipliers, and the like in the ...
2
votes
1answer
108 views
Writing a HLSL4 pixel shader to perform a lookup from a 2Dtexture
I'm a beginner pixel shader writer and I'm running into some trouble. I want to take a 256x256, 16-bit input (DXGI_FORMAT_R16_UINT) image, and pass it through a 256x256 look-up texture ...
2
votes
2answers
50 views
Constant Time Membership Indexing for Intervals on the Real Line?
Say I were given a set of weights adding up to 1, and I lined them up one after another to make a series of bins with length proportional to their weight. I assign each bin an integer corresponding ...
2
votes
3answers
114 views
I want to map my database lookup tables to a hash, good idea?
I am developing a Rails web application and am confused about how to utilize the lookup table values in my models. Here is an example model from my app:
table name: donations
id
amount
note
user_id
...
2
votes
2answers
227 views
How to use LookUp tables in oracle?
In my database, many tables have the 'State' field, representing the state that, that particular entity falls in. I have been told that we should use Lookup tables for this kind of thing, but I am ...
2
votes
3answers
589 views
Implementing a lookup table in Rails
I'm currently using (or trying to use) a lookup table to represent a column that contains an enumerated string. I've had extensive discussions with my team to make sure this is the direction we want ...
2
votes
2answers
136 views
Implicit enumerated types (i.e. symbols) in SQL
We are often using VARCHARs for essentially enumerated values. I know it would often be smart to extract them into a separate lookup table and use an integer ID as a foreign key, but sometimes no ...
2
votes
2answers
348 views
ASP.NET MVC 2: Any way to pass two Objects to a Template?
A "Lookup" in this example is an IList<string> of state abbreviations. Generally, your Domain Model POCOs won't include these options. ViewModels usually take this responsibility referencing ...
2
votes
3answers
566 views
Can I put constraint on column without referring to another table?
I have a text column that should only have 1 of 3 possible strings. To put a constraint on it, I would have to reference another table. Can I instead put the values of the constraint directly on the ...
2
votes
3answers
137 views
Enumerations in the database and O/RM
Suppose I want entries in the table Regions to have a type, e.g. a city, a country etc. What's the accepted way of storing this type, assuming I'll be using O/RM (NHibernate in my case) ? I see two ...
2
votes
3answers
363 views
Best Practice to querying a Lookup table
I am trying to figure out a way to query a property feature lookup table.
I have a property table that contains rental property information (address, rent, deposit, # of bedrooms, etc.) along with ...
2
votes
4answers
71 views
If I have multiple types of an object, when should object.type be a string and when should it be a foreign key?
Let's say I have books which can be romance, fiction, or mystery. I have 2 realistic options to store this data. One is to have a type column in my books table that is a string with the value ...
2
votes
2answers
3k views
Know of a country-nationality list for DB lookup table?
I'm looking for a list/table of countries/nationalities that I can use in my app. I would like to basically have a lookup table that would be like the following, but including all countries in the ...
1
vote
3answers
82 views
coordinate conversion using lookup table
I have an application which reads in gridded coordinate data with values (i.e. lat, lon, value) and then plots this data on a map. The map that is drawn uses a lambert conformal conic projection and ...
1
vote
0answers
95 views
Avoiding Joins to Reference/Lookup Tables in Doctrine 2
In my application, I have a a number of simple reference/lookup database tables used for supplying a list of permitted values in a related table.
(You know, a 'Countries' table has a list of ...
1
vote
1answer
51 views
JPA Lookup table design
I have a design dilemma at my hands and am hoping you guys could help me out with this.
Problem:
I have about 15 lookup tables for my application each with code and value attributes. I was wondering ...
1
vote
4answers
185 views
Hibernate Lookup tables: As an Object Relation or as a code/key
So, I'm working on an application with lots of relations and lookup tables, but It all boils down to this:
Person
id INT (PK)
... (name, address, etc)
optcode VARCHAR (FK to Options)
typecode ...
1
vote
2answers
38 views
SQL - Complicated lookup query
I need help with a complicated query. I have a Venues table, a Tag table and a Venues_Tag_lookup table. When I have the detail of a single venue on screen I would like to be able to show other venues ...
1
vote
1answer
111 views
How to Map Database Lookup Tables Automatically on Insert (Oracle)
I have existing tables that are pretty much denormalized. There are no lookup tables for things list status, type, country, etc... This original design was done just to simplify the application's ...
1
vote
1answer
41 views
what's best approach to store lookup date choice (actual value, or look up index)?
What's best approach to store lookup date choice (actual value, or look up index)? In my case in CoreData for an iPhone application. The options seem to be:
1) Store actual value (e.g. integer or ...
1
vote
3answers
321 views
C# Struct / Lookup Table
Say I have a struct declared like the following:
public struct Test
{
public static int Width = 5;
...
public static int[] Value = new int[1]{ 0 };
}
Now what I want to do is call this ...
1
vote
1answer
233 views
Pow function vs lookup texture in shader
I'm developing for the XBOX 360, and I use the pow() intrinsic in some lighting calculations.
6-8 years ago it used to be common to use a 1D lookup texture to approximate pow(). Does anyone still do ...