Tagged Questions
An associative array is an abstract data type composed of a collection of unique keys mapped to a collection of values.
123
votes
5answers
61k 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?
59
votes
4answers
35k views
How do I remove objects from a javascript associative array?
Suppose I have this code:
var myArray = new Object();
myArray["firstname"] = "Bob";
myArray["lastname"] = "Smith";
myArray["age"] = 25;
Now if I wanted to remove "lastname"?....is there some ...
25
votes
5answers
27k views
In PHP, how do you change the key of an array element?
I have an associative array in the form key => value where key is a numerical value, however it is not a sequential numerical value. The key is actually an ID number and the value is a count. This ...
21
votes
9answers
21k views
How to define hash tables in bash?
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 Python dictionaries but in bash (and hence, should work across ...
19
votes
12answers
11k views
Java associative-array
How to create and fetch associative array in Java, like this in php
$arr[0]['name'] = 'demo';
$arr[0]['fname'] = 'fdemo';
$arr[1]['name'] = 'test';
$arr[1]['fname'] = 'fname';
16
votes
11answers
16k views
Associative arrays in Shell scripts
We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?
13
votes
2answers
2k views
How to iterate over associative array in bash
Based on an assoziative array in a bash script I need to iterate over it to get key & value.
#!/bin/bash
declare -A array
array[foo]=bar
array[bar]=foo
I actually don't understand how to get ...
13
votes
7answers
46k views
Dynamically creating keys in javascript associative array
Simple, quick, question.
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:
arr['key'] = val;
I ...
11
votes
4answers
8k views
How to determine if an associative array has a key?
In ActionScript 3, is there any convenient way of determining if an associative array (dictionary) has a particular key?
I need to perform additional logic if the key is missing. I could catch the ...
9
votes
4answers
14k views
Fastest way to implode an associative array with keys
I'm looking for a fast way to turn an associative array in to a string. Typical structure would be like a URL query string but with customizable separators so I can use '&' for xhtml links or ...
9
votes
10answers
5k views
Is there a way to find how how “deep” a PHP array is?
A PHP array can have arrays for its elements. And those arrays can have arrays and so on and so forth. Is there a way to find out the maximum nesting that exists in a PHP array? An example would be a ...
8
votes
7answers
315 views
Automatically sorted by values map in Java
I need to have an automatically sorted-by-values map in Java - so that It keeps being sorted at any time while I'm adding new key-value pairs or update the value of an existing key-value pair, or even ...
8
votes
6answers
1k views
Associative arrays in C
I am implementing a way to transfer a set of data to a programmable dongle. The dongle is based on a smart card technology and can execute an arbitrary code inside. The input and output data is passed ...
8
votes
2answers
2k views
PHP prepend associative array with literal keys?
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.
As ...
7
votes
2answers
2k views
Passing an associative array from c# to Powershell
I'd like to pass an associative array from C# to Powershell. As an example I'd like to execute this powershell line of code:
PS C:\> get-command | select name, @{N="Foo";E={"Bar"}} -first 3
Name ...
6
votes
4answers
396 views
Finding cartesian product with PHP associative arrays
Say that I have an array like the following:
Array
(
[arm] => Array
(
[0] => A
[1] => B
[2] => C
)
[gender] => Array
...
6
votes
2answers
274 views
PHP, MySQL - Associating a checkbox with a dropdown
I'm having an issue with trying to add a "quantity" to a product that a person is ordering. I've got a Products table, an orders table, an order_item table (which is a many-to-many table that contains ...
6
votes
2answers
3k views
JavaScript associative array to JSON
How can I convert a JavaScript associative array into JSON?
I have tried the following:
var AssocArray = new Array();
AssocArray["a"] = "The letter A"
console.log("a = " + AssocArray["a"]);
// ...
6
votes
3answers
208 views
Associative Matrices?
I'm working on a project where I need to store a matrix of numbers indexed by two string keys. The matrix is not jagged, i.e. if a column key exists for any row then it should exist for all rows. ...
6
votes
4answers
23k views
How to sort a date array in PHP
I have an array in this format:
Array
(
[0] => Array
(
[28th February, 2009] => 'bla'
)
[1] => Array
(
[19th March, 2009] => 'bla'
...
5
votes
4answers
139 views
What's the difference between objects and associated array in javascript?
The Confusing discussion
In this question, there is a discussion on the concepts of associated array and object in javaScript which I got a bit confused.
In this example code:
var check = {
...
5
votes
2answers
407 views
What's the difference between pls_integer and binary_integer?
I've inherited some code which is going to be the base for some additional work. Looking at the stored procs, I see quite a lot of associative-arrays.
Some of these are indexed by binary_integers, ...
5
votes
4answers
217 views
PHP: Expose 'get' and 'set' for object with nested associative arrays
I have a class which stores values with a multi-level associative array:
I need to add a way to access and modify nested values. Here is a working solution for my problem, but it is rather slow. Is ...
5
votes
2answers
431 views
Why can't I store string keys in an Associative Array?
I'm new to D programming language, just started reading The D Programming Language book.
I run into error when trying one associative array example code
#!/usr/bin/rdmd
import std.stdio, std.string;
...
5
votes
4answers
4k views
Multi-dimensional associative arrays in javascript
There is the following query results: (key1 and key2 could be any text)
id key1 key2 value
1 fred apple 2
2 mary orange 10
3 fred banana 7
4 fred orange ...
5
votes
4answers
985 views
How to pass an associative array as argument to a function in Bash?
How do you pass an associative array as an argument to a function? Is this possible in Bash?
The code below is not working as expected:
function iterateArray
{
local ADATA="${@}" # ...
5
votes
3answers
233 views
ranges from associative arrays in D 2
I've just started implementing my first medium scale program in D 2.0 after reading Andrei's book The D Programming Language. One of the first problems I came to was using the std.algorithm library ...
5
votes
4answers
2k views
Hash tables VS associative arrays [PHP]
Recently I have read about hash-tables in a very famous book "Introduction to Algorithms". I haven't used them in any real applications yet, but wanted to. But don't know how to start.
Can anyone ...
5
votes
2answers
217 views
How to make a object (class) foreachable in D?
how can I make a class usable in a foreach statement?
The class contains a associative array (e.g. string[string]). So the foreach statement use this array as source.
So this is what I want:
auto ...
5
votes
2answers
599 views
Compare two associative arrays and create a new array with the matched arrays, PHP
I have this two arrays:
$arr1=array( array("id" => 8, "name" => "test1"),
array("id" => 4, "name" => "test2"),
array("id" => 3, "name" => "test3")
...
5
votes
11answers
2k views
Value objects vs associative arrays in PHP
(This question uses PHP as context but isn't restricted to PHP only. e.g. Any language with built in hash is also relevant)
Let's look at this example (PHP):
function makeAFredUsingAssoc()
{
...
5
votes
2answers
2k views
Using an Oracle Table Type in IN-clause - compile fails
Simply trying to get a cursor back for the ids that I specify.
CREATE OR REPLACE PACKAGE some_package AS
TYPE t_cursor IS REF CURSOR;
TYPE t_id_table IS TABLE OF NVARCHAR(38) INDEX BY ...
5
votes
7answers
420 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 ...
5
votes
2answers
317 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 ...
5
votes
3answers
10k views
jQuery JSON Associative Array
How do I access the name of an an item in an assosiative array using jQuery.
For example how would I read "title", "link", "media", ect... in this
{
"title": "What we do in our free time...",
...
5
votes
4answers
3k views
Finding the minimum value's key in an associative array
In PHP, say that you have an associative array like this:
$pets = array(
"cats" => 1,
"dogs" => 2,
"fish" => 3
);
How would I find the key with the lowest value? Here, I'd be ...
5
votes
6answers
741 views
Formatting associative array declaration
When declaring an associative array, how do you handle the indentation of the elements of the array? I've seen a number of different styles (PHP syntax, since that's what I've been in lately). This ...
4
votes
8answers
148 views
Can you explain Perls hash system to a PHP guy?
How do Perl hashes work?
Are they like arrays in PHP or some completely different beast?
From what I understand all it is is an associative array right? This is what I thought until I began
to talk ...
4
votes
1answer
51 views
Is it possible to get the Creation order/Insertion order of elements in a TCL array?
Tcl arrays are great for look up tables, but they are stored as "unordered sets" in theory. Is there anyway to iterate thru them in the order elements were added to the array without adding extra ...
4
votes
4answers
73 views
Why do only non-constant maps provide associative array-like direct element retrieval?
I'm reading:
The standard C++ Library: A Tutorial and Reference by Nicolai M. Jossuttis
It's my go-to book when I'm going to use some STL mechanisms in any significant manner. Anyway, I was ...
4
votes
3answers
71 views
Is there a language-independent name for the symbol between a Map key and value?
I.e. is there a generic name for the : in Groovy's ['a':'1'], => in Ruby's {:a => '1'}, -> in Scala's Map('a'->'1')?
4
votes
4answers
124 views
Popping the key & value from an associative array in PHP
Let S be an associative array in PHP, I need to retrieve and extract from it the first element, both the value and the key.
I would use
value1=array_pop(S);
but it only gives me the value.
I can ...
4
votes
4answers
2k views
Can you convert C# dictionary to Javascript associative array using asp.net mvc Json()
I recently asked this question, but after some of the responses and some research, i wanted to change what i was actually asking.
i have seen a number of blog posts about sending associative arrays ...
4
votes
1answer
140 views
Associative array .remove[] calling core.stdc.stdio.remove in dmd 2.0
I have the following code in D
import std.stdio;
class Thing
{
// Fields
private string Name;
// Accessors
public string name() { return Name; }
}
class Place: Thing
{
// Fields
private ...
4
votes
3answers
485 views
Doing a “Diff” on an Associative Array in javascript / jQuery?
If I have two associative arrays, what would be the most efficient way of doing a diff against their values?
For example, given:
array1 = {
foreground: 'red',
shape: 'circle',
...
4
votes
4answers
867 views
Multiple MYSQL queries vs. Multiple php foreach loops
Database structure:
id galleryId type file_name description
1 `artists_2010-01-15_7c1ec` `image` `band602.jpg` `Red Umbrella Promo`
2 `artists_2010-01-15_7c1ec` ...
4
votes
3answers
1k views
How do I turn a PHP array into $keys and $values?
If I have an array as $keys => $values, how can I get two arrays of $keys and $values?
4
votes
3answers
1k views
Javascript Object vs JScript Dictionary
Javascript Objects and JScript Dictionary are both associative Arrays
obj = new Object ;
dic = new ActiveXObject("Scripting.Dictionary") ;
My question is... Is there any difference between them in ...
4
votes
4answers
960 views
Effective ways of finding an element in a Javascript array
I am using an array with titles. Each titles index corresponds to an id in a database which contains html for that given title.
Lets say I have a string which contains one of the titles.
title = ...
4
votes
2answers
1k views
Extracting a subset of values from an associative array (php)
I want to do something seemingly very simple, but I can't find anything about it: simply extract a subset of an array similar to array_splice, but using keys to retrieve the values :
$data = ...