active questions tagged associative-array - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T13:53:12Zhttp://stackoverflow.com/feeds/tag/associative-arrayhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1861973/constant-time-hash-for-strings1Constant-time hash for strings?San Jacinto2009-12-07T18:31:43Z2009-12-07T21:13:59Z
<p>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 in Python. Other languages certainly support such a mechanism. C++ has its map, LISP has an equivalent, as do most other modern languages.</p>
<p>It was contended in the answers to the question that hash algorithms on strings can be conducted in constant timem with one SO member who has 25 years experience in programming claiming that anything can be hashed in constant time. My personal contention is that this is not true, unless your particular application places a boundary on the string length. This means that some constant K would dictate the maximal length of a string.</p>
<p>I am familiar with the Rabin-Karp algorithm which uses a hashing function for its operation, but this algorithm does not dictate a specific hash function to use, and the one the authors suggested is O(m), where m is the length of the hashed string.</p>
<p>I see some other pages such as this one (<a href="http://www.cse.yorku.ca/~oz/hash.html" rel="nofollow">http://www.cse.yorku.ca/~oz/hash.html</a>) that display some hash algorithms, but it seems that each of them iterates over the entire length of the string to arrive at its value.</p>
<p>From my comparatively limited reading on the subject, it appears that most associative arrays for string types are actually created using a hashing function that operates with a tree of some sort under the hood. This may be an AVL tree or red/black tree that points to the location of the value element in the key/value pair.</p>
<p>Even with this tree structure, if we are to remain on the order of theta(log(n)), with n being the number of elements in the tree, we need to have a constant-time hash algorithm. Otherwise, we have the additive penalty of iterating over the string. Even though theta(m) would be eclipsed by theta(log(n)) for indexes containing many strings, we cannot ignore it if we are in such a domain that the texts we search against will be very large.</p>
<p>I am aware that suffix trees/arrays and Aho-Corasick can bring the search down to theta(m) for a greater expense in memory, but what I am asking specifically if a constant-time hash method exists for strings of arbitrary lengths as was claimed by the other SO member.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1854761/annoyances-of-flex-associative-array0Annoyances of Flex - Associative Arrayunknown (google)2009-12-06T08:25:52Z2009-12-06T08:31:02Z
<p>I have an associative array and while iterating through this array, using foreach loop. Flex is loosing the order. This is so annoying.</p>
<p>Why is this happening?</p>
<p>How can i avoid this?</p>
http://stackoverflow.com/questions/1850432/flex-dictionary-sorting0Flex Dictionary Sortingunknown (google)2009-12-04T23:51:16Z2009-12-05T19:20:06Z
<p>I have the following dictionary in flex, and i d like to sort it by value. Couldn't find any resource.</p>
<pre><code>'1'=>2, '0' =>1, '3'=>4 ..
</code></pre>
<p>Any ideas ? How can i sort this by value ?</p>
http://stackoverflow.com/questions/1828671/origin-of-map-in-computer-science3Origin of Map in Computer ScienceJames Thompson2009-12-01T20:26:42Z2009-12-01T20:32:51Z
<p>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 the <a href="http://www.cplusplus.com/reference/stl/map/" rel="nofollow">STL map</a>. The second definition is from functional programming, in which map applies is a function that takes a list and a function, applies the function to all elements of the list in order, and returns a list of results. </p>
<p>What are the origins of the different definitions of map? I'm guessing that the second definition might have come from the <a href="http://en.wikipedia.org/wiki/Lisp%5F%28programming%5Flanguage%29#Control%5Fstructures" rel="nofollow">mapcar function from McCarthy LISP</a>, but I'm not sure if that was derived from another useful. The first definition makes intuitive sense to me, but I'm not sure where it came from. </p>
http://stackoverflow.com/questions/1820257/assigning-to-an-associative-array-slice-in-php1assigning to an associative array slice in phpspudly2009-11-30T14:49:38Z2009-11-30T15:20:27Z
<p>In perl, I could assign a list to multiple values in a hash, like so:</p>
<pre><code># define the hash...
my %hash = (
foo => 1,
bar => 2,
baz => 3,
);
# change foo, bar, and baz to 4, 5, and 6 respectively
@hash{ 'foo', 'bar', 'baz' } = ( 4, 5, 6 );
</code></pre>
<p>Is there any way to do the same in php? In fact, is there even a way to get a slice of an assoc array at all?</p>
http://stackoverflow.com/questions/1788918/what-is-the-appropriate-data-structure-for-this-array-in-csharp0What is the appropriate data structure for this array in CSharp?Psytronic2009-11-24T09:27:08Z2009-11-25T16:22:34Z
<p>Hey guys, If I've got this data structure in PHP, what data structure is the best for it in C#?</p>
<pre>
$array = Array(
[dummy1] => Array (
[0] => "dffas",
[1] => "asdas2",
[2] => "asdasda"
),
[dummy2] => Array (
[0] => "asdasd",
[1] => "sdfsdfs",
[2] => "sdfsdf"
)
)
</pre>
<p>And so on. But I need to be able to add data to the nested array on the fly, something like this:</p>
<pre>
$array["dummy1"][] = "bopnf";
</pre>
<p>I tried using a Hashtable, but when I go <code>hashtable.add(key,value)</code>, where key is my <code>dummy1</code>, and value is one of the array elements, it will throw an error stating that an element already contains that key.</p>
<p>So I'm thinking a hashtable is not the correct way of tackling this.</p>
<p>Thanks,
Psy</p>
http://stackoverflow.com/questions/1744168/how-to-write-a-good-php-database-insert-using-an-associative-array1How to write a good PHP database insert using an associative arrayTom2009-11-16T19:04:59Z2009-11-18T07:38:20Z
<p>In PHP, I want to insert into a database using data contained in a associative array of field/value pairs.</p>
<p><em>Example:</em></p>
<pre><code>$_fields = array('field1'=>'value1','field2'=>'value2','field3'=>'value3');
</code></pre>
<p>The resulting SQL insert should look as follows:</p>
<pre><code>INSERT INTO table (field1,field2,field3) VALUES ('value1','value2','value3');
</code></pre>
<p>I have come up with the following PHP one-liner:</p>
<pre><code>mysql_query("INSERT INTO table (".implode(',',array_keys($_fields)).") VALUES (".implode(',',array_values($_fields)).")");
</code></pre>
<p>It separates the keys and values of the the associative array and <code>implodes</code> to generate a comma-separated string . The problem is that it does not escape or quote the values that were inserted into the database. To illustrate the danger, Imagine if <code>$_fields</code> contained the following:</p>
<pre><code>$_fields = array('field1'=>"naustyvalue); drop table members; --");
</code></pre>
<p>The following SQL would be generated:</p>
<pre><code>INSERT INTO table (field1) VALUES (naustyvalue); drop table members; --;
</code></pre>
<p>Luckily, <a href="http://php.net/manual/en/function.mysql-query.php" rel="nofollow">multiple queries are not supported</a>, nevertheless quoting and escaping are essential to prevent SQL injection vulnerabilities. </p>
<p><strong>How do you write your PHP Mysql Inserts?</strong></p>
<p><em>Note: PDO or mysqli prepared queries aren't currently an option for me because the codebase already uses mysql extensively - a change is planned but it'd take alot of resources to convert?</em></p>
http://stackoverflow.com/questions/1733394/flex-associative-array0Flex Associative Arrayunknown (google)2009-11-14T05:38:39Z2009-11-14T05:41:51Z
<p>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}</p>
<p>I can create an array by input.text.split(",");</p>
<p>But I d like to make it an associative array as above, how to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1715978/how-to-use-an-oracle-associative-array-in-a-sql-query0How to use an Oracle Associative Array in a SQL queryScottCher2009-11-11T15:35:24Z2009-11-13T18:51:42Z
<p>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 array in a sql query.</p>
<p>The reason for this is that it requires a context switch - SQL statements require SQL types and an associative array passed into PL/SQL like this is actually defined as a PL/SQL type. I believe any types defined within a PL/SQL package/procedure/function are PL/SQL types while a type created outside these objects is a SQL type (if you can provide more clarity on that, please do but its not the goal of this question).</p>
<p>So, the question is, what are the methods you would use to convert the PL/SQL associative array param into something that within the procedure can be used in a sql statement like this:</p>
<pre><code>OPEN refCursor FOR
SELECT T.*
FROM SOME_TABLE T,
( SELECT COLUMN_VALUE V
FROM TABLE( associativeArray )
) T2
WHERE T.NAME = T2.V;
</code></pre>
<p>For the purposes of this example, the "associativeArray" is a simple table of varchar2(200) indexed by PLS_INTEGER. In C#, the associativeArry param is populated with a string[].</p>
<p><strong>Feel free to discuss other ways of doing this besides using an associative array but know ahead of time those solutions will not be accepted. Still, I'm interested in seeing other options.</strong></p>
http://stackoverflow.com/questions/1380567/can-i-use-an-stl-map-if-i-plan-to-use-arbitrary-class-objects-as-the-key3Can I use an stl map if I plan to use arbitrary class objects as the key?AlanKley2009-09-04T17:30:44Z2009-11-03T09:39:01Z
<p>I'm new to STL. The thing stumping me about using a map to store arbitrary objects:</p>
<pre><code>std::map<MyClassObj, MyDataObject> MyMap;
</code></pre>
<p>is how I find objects. How would MyMap.find (MyClassObjInstance) work for instance? Do I need to implement my own iterator and provide some standard functions which would include some equivalence function? Any examples would be appreciated.</p>
<p>Is there another method to store an associated list of arbitrary objects using standard libraries? I'm already using stl to maintain platform portability, and would prefer not to add another library dependency like BOOST.</p>
http://stackoverflow.com/questions/1098040/checking-if-an-associative-array-key-exists-in-javascript1Checking if an associative array key exists in JavascriptAdam Ernst2009-07-08T13:21:32Z2009-11-02T01:46:07Z
<p>How do I check if a particular key exists in a Javascript associative array?</p>
<p>If a key doesn't exist and I try to access it, will it return false? Or throw an error?</p>
http://stackoverflow.com/questions/1653694/using-associative-array-values-from-within-the-same-array1Using associative array values from within the same arraydrummer2009-10-31T07:30:43Z2009-10-31T07:35:47Z
<p>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 <code>something</code> and <code>other</code> within the third one <code>another</code>? </p>
<pre><code>$gar = array("something" => "something value",
"other" => "other value",
"another" => something . other
);
</code></pre>
<p>The idea is that another's value will be "something valueother value". </p>
<p>Is this possible? Is there a way to accomplish the same thing?</p>
http://stackoverflow.com/questions/1651569/finding-last-pair-in-associative-array2Finding last pair in associative arrayChris2009-10-30T18:36:30Z2009-10-30T19:34:12Z
<p>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 the best way? </p>
<pre><code>foreach ($kvarr as $key => $value){
// I'd like to be able to check here if this key value pair is the last
// so I can give it special treatment
}
</code></pre>
http://stackoverflow.com/questions/1645080/how-do-i-create-and-add-anonymous-hashes-to-a-known-hash-during-script-execution0How do I create and add anonymous hashes to a known Hash during script execution?Mick2009-10-29T16:50:43Z2009-10-29T17:20:03Z
<p>I'll attempt to illustrate this with an example. Take a common example of a Hash of Hashes:</p>
<pre><code>my %HoH = (
flintstones => {
lead => "fred",
pal => "barney",
},
jetsons => {
lead => "george",
wife => "jane",
"his boy" => "elroy",
},
simpsons => {
lead => "homer",
wife => "marge",
kid => "bart",
},
);
</code></pre>
<p>For my purposes, I would like to be able to add an unnamed, or anonymous hashes to %HOH. I won't need (or be able to) define these sub-hashes until runtime. How can I accomplish this with Perl?</p>
<p>Everything I've read (and I have read through Perldocs and Google'd already) seems to show examples where all sub-hahes (e.g. "flintstones", "jetsons", and "simpsons") are defined.</p>
<p>What I am doing is attempting to build a parent Hash that will contain sub-hashes with rows from a CSV file:</p>
<pre><code>%TopHash = (
%Line1 => {
cell01 => $some_value1a;
cell02 => $some_value2a;
cell03 => $some_value3a;
},
%Line2 => {
cell01 => $some_value1b;
cell02 => $some_value2b;
cell03 => $some_value3b;
},
%Line3 => {
cell01 => $some_value1c;
cell02 => $some_value2c;
cell03 => $some_value3c;
},
# etc
# etc
# etc
);
</code></pre>
<p><strong>The number of "%LineX" hashes that I need is not known until runtime</strong> (because they represent the number of lines in a CSV that is read at runtime).</p>
<p>Any ideas? If it isn't clear already...I still am trying to wrap my head around Perl hashes.</p>
http://stackoverflow.com/questions/1635015/xml-vs-array-in-flash1XML vs. Array in Flashromania2009-10-28T03:13:55Z2009-10-28T03:32:12Z
<p>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 client (I don't want to load an XML file) but I'm not sure if formatting the data into an XML file or into nested associative arrays is better in terms of performance. What about data size? Does formatting the data in XML result in smaller or larger data size (which ultimately contributes to the size of the flash client file)?</p>
http://stackoverflow.com/questions/1621685/jquery-json-associative-array0jQuery JSON Associative ArrayBen Shelock2009-10-25T18:44:58Z2009-10-25T18:57:16Z
<p>How do I access the name of an an item in an assosiative array using jQuery.</p>
<p>For example how would I read "title", "link", "media", ect... in this</p>
<pre><code>{
"title": "What we do in our free time...",
"link": "http://www.flickr.com/photos/tnhimmies/4042938515/",
"media": {"m":"http://farm3.static.flickr.com/2572/4042938515_3a00561320_m.jpg"},
"date_taken": "2009-10-24T03:48:10-08:00",
"description": "<p><a href=\"http://www.flickr.com/people/tnhimmies/\">Darlene, TN Persians (www.tnpurrs.com)<\/a> posted a photo:<\/p> <p><a href=\"http://www.flickr.com/photos/tnhimmies/4042938515/\" title=\"What we do in our free time...\"><img src=\"http://farm3.static.flickr.com/2572/4042938515_3a00561320_m.jpg\" width=\"240\" height=\"230\" alt=\"What we do in our free time...\" /><\/a><\/p> <p>Tennessee Persians<br /> <a href=\"http://www.tnpurrs.com\" rel=\"nofollow\">www.tnpurrs.com<\/a><\/p>",
"published": "2009-10-25T18:28:36Z",
"author": "nobody@flickr.com (Darlene, TN Persians (www.tnpurrs.com))",
"author_id": "66405213@N00",
"tags": "cat persian tnpurrs"
},
</code></pre>
http://stackoverflow.com/questions/1600268/comparing-two-lists-with-a-shell-script0Comparing two lists with a shell scriptCasebash2009-10-21T11:33:22Z2009-10-21T15:15:53Z
<p>Suppose I have two lists of numbers in files f1, f2, each number one per line. I want to see how many numbers in the first list are not in the second and vice versa. Currently I am using grep -f f2 -v f1 and then repeating this using a shell script. This is pretty slow (quadratic time hurts). Is there a nicer way of doing this?</p>
http://stackoverflow.com/questions/351495/dynamically-creating-keys-in-javascript-associative-array0Dynamically creating keys in javascript associative array.Oscar Reyes2008-12-09T01:13:34Z2009-10-19T19:10:28Z
<p>Simple, quick, question.</p>
<p>How can I create dynamically create keys in javascript associative arrays? All the doc I've found so far is to update keys that are already created:</p>
<pre><code> arr['key'] = val;
</code></pre>
<p>I have a string like this " name = oscar " </p>
<p>And I want to endup with something like this:</p>
<pre><code>{ name: 'whatever' }
</code></pre>
<p>That is I split the string and get the first element, and I want to put that in a dict ( asoc arr ).</p>
<p><em>EDIT</em></p>
<p>This is what I have and currently doesn't work ( I guess :S ) </p>
<pre><code>var text = ' name = oscar '
var dict = new Array();
var keyValuePair = text.split(' = ');
dict[ keyValuePair[0] ] = 'whatever';
alert( dict ); // prints nothing.
</code></pre>
<p><em>EDIT 2</em></p>
<p>Aaarggg. I hate re-take a programming languages. I forget the most basic things. It turns out I was filling the dict correctly but didn't knew how to display the values :-B . ... .
Thank you all</p>
http://stackoverflow.com/questions/1588353/finding-the-minimum-values-key-in-an-associative-array0Finding the minimum value's key in an associative arrayToytown Mafia2009-10-19T12:15:23Z2009-10-19T12:27:37Z
<p>Hi,</p>
<p>In PHP, say that you have an associative array like this:</p>
<pre><code>$pets = array(
"cats" => 1,
"dogs" => 2,
"fish" => 3
);
</code></pre>
<p><strong>How would I find the key with the lowest value?</strong> Here, I'd be looking for <code>cats</code>.</p>
<p>Is there some built in PHP function that I've missed which does this? It would also be great if there was a solution that accounted for several values being identical, as below:</p>
<pre><code>$pets = array(
"cats" => 1,
"dogs" => 1,
"fish" => 2
);
</code></pre>
<p>Above, I wouldn't mind if it just output either; <code>cats</code> or <code>dogs</code>.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1554389/passing-associative-array-of-type-timestamp-to-oracle-stored-procedure0passing associative array of type Timestamp to oracle stored procedurejeroenh2009-10-12T12:47:04Z2009-10-13T17:43:43Z
<p>We're running into a strange error using Oracle Odp.Net (connecting to Oracle 9). The problem is illustrated by the code snippet below.</p>
<p>This is the error we're experiencing:</p>
<p>ORA-00600: internal error code, arguments: [15419], [severe error during PL/SQL execution], [], [], [], [], [], []</p>
<p>ORA-06544: PL/SQL: internal error, arguments: [78502], [], [], [], [], [], [], []</p>
<p>ORA-06553: PLS-801: internal error [78502]</p>
<p>Googling around makes us suspect (though we're not entirely sure) that passing an array of Timestamps is not supported by Odp.Net. </p>
<p>So the question is 2-fold:</p>
<ul>
<li>is it possible to pass an array of
timestamp to a pl/sql procedure using
odp.net? </li>
<li>if not, is there a good workaround available?</li>
</ul>
<p>C# console program illustrating the problem:</p>
<pre><code>using System;
using System.Collections;
using System.Data;
using Oracle.DataAccess.Client;
class Program
{
private const string _db = "<db>";
private const string _username = "<user>";
private const string _password = "<password>";
private const string _storedProcedureName = "<sproc>";
static void Main(string[] args)
{
var connectionString = string.Format(
"data source={0};user id={1};password={2}",
_db, _username, _password);
var connection = new OracleConnection(connectionString);
try
{
connection.Open();
var timeStamps = new[] { DateTime.Now, DateTime.Now };
var parameter = new OracleParameter("inTimeStamps", OracleDbType.TimeStamp)
{
Direction = ParameterDirection.Input,
CollectionType = OracleCollectionType.PLSQLAssociativeArray,
Size = timeStamps.Length,
Value = timeStamps
};
var command = connection.CreateCommand();
command.CommandType = CommandType.StoredProcedure;
command.CommandText = _storedProcedureName;
command.Parameters.Add(parameter);
command.ExecuteReader();
}
finally
{
connection.Close();
}
}
}
</code></pre>
<p>The code is calling the following PL/SQL stored procedure</p>
<pre><code> TYPE ArrayOfTimestamps is table of timestamp index by binary_integer;
PROCEDURE TestOdpTimeStamp (inTimeStamps in ArrayOfTimestamps)
IS
test number;
BEGIN
select 1 into test from dual;
END;
</code></pre>
http://stackoverflow.com/questions/1553331/how-to-build-a-tree-structure-from-associative-array-2How to build a tree structure from associative array [closed]Adiasz2009-10-12T08:10:44Z2009-10-12T08:21:16Z
<p>Hello</p>
<p>Anybody know how to convert one-dimension associative array with parent connection to x-dimensions array tree structure view?</p>
http://stackoverflow.com/questions/1535432/java-what-data-structure-to-use-to-imitate-phps-associative-arrays1Java: What data structure to use to imitate PHP's associative arrays?Rosarch2009-10-08T03:15:22Z2009-10-08T04:28:36Z
<p>I want a data structure that allows me to map keys to values, like PHP's associative arrays. Each key can only exist once, but a value can be mapped to any number of keys. What am I looking for? Something in the Google Commons Collections?</p>
http://stackoverflow.com/questions/1526215/convert-associate-array-to-xml-in-php0convert associate array to XML in phpAn employee2009-10-06T15:09:54Z2009-10-06T16:53:32Z
<p>How do i convert an associate array to an XML string? I <a href="http://snipplr.com/view/3491/convert-php-array-to-xml-or-simple-xml-object-if-you-wish/" rel="nofollow">found this</a> but get the error 'Call to a member function addChild() on a non-object' when running the line</p>
<pre><code>$node = $xml->addChild($key);
</code></pre>
http://stackoverflow.com/questions/1525997/add-an-associated-pair-to-a-php-array2Add an associated pair to a PHP arrayAn employee2009-10-06T14:37:49Z2009-10-06T14:42:37Z
<p>I have an array, i tried writing</p>
<pre><code>array_push($json['Request']['Header'], "key" => "val");
</code></pre>
<p>but i received an error. Writing the below works but it adds an array instead of just the key/val</p>
<pre><code>array_push($json['Request']['Header'], array("key" => "val"));
..
[0] => Array
(
[key] => val
)
//i would like
...
[key] => val
</code></pre>
http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts9Associative arrays in Shell scriptsIrfan Zulfiqar2009-03-27T07:37:40Z2009-09-30T00:12:16Z
<p>We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?</p>
http://stackoverflow.com/questions/1494178/how-to-define-hash-tables-in-bash2How to define hash tables in bash?Sridhar Ratnakumar2009-09-29T18:29:38Z2009-09-29T22:45:35Z
<p>Just what title says. I am surprised by insufficiency of results in Google search for this question! What I want to is the equivalent of <a href="http://diveintopython.org/getting%5Fto%5Fknow%5Fpython/dictionaries.html" rel="nofollow">Python dictionaries</a> but in bash (and hence, should work across OSX, Ubuntu and other major Linux distributions).</p>
http://stackoverflow.com/questions/1405323/whats-the-most-elegant-method-for-determining-if-an-array-is-associative-or-not0What's the most elegant method for determining if an array is associative or not?Dycey2009-09-10T13:29:58Z2009-09-11T18:57:02Z
<p>I have some code that may be passed either an indexed array of values, or an associative array of value pairs. (The parameter is then used to construct radio buttons.) What's the most elegant (least resource hungry?) method for determining which I have?</p>
<p>EDIT: One slight problem with this: what if the array to be tested is as follows....</p>
<pre><code>$d = array(1,2,3,4,4,5);
unset($d[3]);
</code></pre>
<p>or even </p>
<p>array_unique($d);</p>
<p>Does this make $d an associative array?</p>
<p>{ I have:</p>
<pre><code><?php
$a = array(1,2,3,4);
$b = array('one'=>1,"Two"=>2,3=>"Three");
$c = array('one',"Two","Three");
function is_associative($array)
{
$keys = array_keys($array);
foreach ($keys as $key) {
if(!is_int($key)) {
return true;
}
}
return false;
}
var_dump(is_associative($a));
var_dump(is_associative($b));
var_dump(is_associative($c));
?>
</code></pre>
<p>which seems cumbersome!}</p>
http://stackoverflow.com/questions/1368869/how-to-make-an-associative-array-in-actionscript-indexed-by-point0How to make an associative array in actionscript indexed by Point?Jesse Beder2009-09-02T16:47:25Z2009-09-03T14:07:14Z
<p>I'd like my associative array indexed by <code>Point</code> (or, in general, an <code>Object</code>) that has a semantic equality. Unfortunately</p>
<pre><code>var p:Point = new Point(1, 1);
var q:Point = new Point(1, 1);
var dict:Dictionary = new Dictionary();
dict[p] = 5;
trace(dict[p]); // => 5
trace(dict[q]); // => undefined
</code></pre>
<p>because</p>
<pre><code>trace(p===q); // => false
</code></pre>
<p>Is there any way to tell <code>Dictionary</code> how to order its keys, or is there a different class to use for this type of thing?</p>
http://stackoverflow.com/questions/1371016/php-prepend-associative-array-with-literal-keys1PHP prepend associative array with literal keys?Colin2009-09-03T01:28:23Z2009-09-03T01:33:29Z
<p>Is it possible to prepend an associative array with literal key=>value pairs? I know that array_unshift() works with numerical keys, but I'm hoping for something that will work with literal keys.</p>
<p>As an example I'd like to do the following:</p>
<pre><code>$array1 = array('fruit3'=>'apple', 'fruit4'=>'orange');
$array2 = array('fruit1'=>'cherry', 'fruit2'=>'blueberry');
// prepend magic
$resulting_array = ('fruit1'=>'cherry',
'fruit2'=>'blueberry',
'fruit3'=>'apple',
'fruit4'=>'orange');
</code></pre>
http://stackoverflow.com/questions/1326183/detecting-if-an-array-is-indexed-or-associative1Detecting if an Array is Indexed or Associativeeyze2009-08-25T05:16:11Z2009-08-25T06:05:42Z
<p>What would be the most performant way of checking if an array is associative or not in PHP? </p>