1
vote
6answers
98 views
Constant-time hash for strings?
Another question on SO brought up the facilities in some languages to hash strings to give them a fast lookup in a table. Two examples of this are dictionary<> in .NET and the {} storage structure …
0
votes
2answers
46 views
Annoyances of Flex - Associative Array
I have an associative array and while iterating through this array, using foreach loop. Flex is loosing the order. This is so annoying.
Why is this happening?
How can i avoid this?
0
votes
1answer
35 views
Flex Dictionary Sorting
I have the following dictionary in flex, and i d like to sort it by value. Couldn't find any resource.
'1'=>2, '0' =>1, '3'=>4 ..
Any ideas ? How can i sort this by value ?
3
votes
2answers
88 views
Origin of Map in Computer Science
In computer science, there are two definitions of the word map. The first is as an associative array, a type of container that maps values of one type to values of another type. An example of this is …
1
vote
3answers
50 views
assigning to an associative array slice in php
In perl, I could assign a list to multiple values in a hash, like so:
# define the hash...
my %hash = (
foo => 1,
bar => 2,
baz => 3,
);
# change foo, bar, and baz to 4, 5, and 6 …
0
votes
2answers
40 views
What is the appropriate data structure for this array in CSharp?
Hey guys, If I've got this data structure in PHP, what data structure is the best for it in C#?
$array = Array(
[dummy1] => Array (
[0] => "dffas",
[1] => "asdas2",
…
1
vote
4answers
218 views
How to write a good PHP database insert using an associative array
In PHP, I want to insert into a database using data contained in a associative array of field/value pairs.
Example:
$_fields = …
0
votes
1answer
55 views
Flex Associative Array
User inputs a comma separated string and i d like to make a an associative array out of it as follows :
Input : 4,3,3,2,2
Output : Array{"0"=>4,"1"="3","2"=>3,"3"=>2,"4"=>2}
I can create an array by …
0
votes
2answers
133 views
How to use an Oracle Associative Array in a SQL query
ODP.Net exposes the ability to pass Associative Arrays as params into an Oracle stored procedure from C#. Its a nice feature unless you are trying to use the data contained within that associative …
3
votes
4answers
155 views
Can I use an stl map if I plan to use arbitrary class objects as the key?
I'm new to STL. The thing stumping me about using a map to store arbitrary objects:
std::map<MyClassObj, MyDataObject> MyMap;
is how I find objects. How would MyMap.find (MyClassObjInstance) …
1
vote
3answers
1k views
Checking if an associative array key exists in Javascript
How do I check if a particular key exists in a Javascript associative array?
If a key doesn't exist and I try to access it, will it return false? Or throw an error?
1
vote
2answers
24 views
Using associative array values from within the same array
I'm trying to access an associative array's key and value from within the same array. If I have 3 pairs in my array. Can I use the value of let's say the values of something and other within the third …
2
votes
4answers
54 views
Finding last pair in associative array
I'm looping through an associative array with a foreach. I'd like to be able to check if the key value pair being handled is the last so I can give it special treatment. Any ideas how I can do this …
0
votes
4answers
74 views
How do I create and add anonymous hashes to a known Hash during script execution?
I'll attempt to illustrate this with an example. Take a common example of a Hash of Hashes:
my %HoH = (
flintstones => {
lead => "fred",
pal => "barney",
},
…
1
vote
2answers
52 views
XML vs. Array in Flash
In manipulating data in Flash, which data format gives faster speeds in terms of searching and manipulation, XML or nested associative arrays? Meaning I currently send data in strings into the Flash …
