An array is a data structure consisting of a collection of elements (values or variables), each identified by at least one index. All the elements of an array are stored adjacent to each other.
275
votes
8answers
17k views
In C arrays why is this true? a[5] == 5[a]
As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a]
Joel says that it's because of pointer ...
227
votes
13answers
15k views
Why does [1,2] + [3,4] = “1,23,4” in JavaScript?
I wanted to add the elements of an array into another, so I tried this simple sentence in our beloved Firebug:
[1,2] + [3,4]
It responded with:
"1,23,4"
What is going on?
211
votes
12answers
135k views
array.contains(obj) in JavaScript
What is the most concise and efficient way to find out if a JavaScript array contains an obj?
This is the only way I know to do it:
contains(a, obj) {
for (var i = 0; i < a.length; i++) {
...
172
votes
5answers
97k views
How to create ArrayList (ArrayList<T>) from array (T[]) in Java
I have an array that is initialised like:
Element[] array = {new Element(1),new Element(2),new Element(3)};
I would like to convert this array into an object of the ArrayList class.
...
135
votes
15answers
117k views
What is the best way to add options to a select from an array with jQuery?
What is the best method for adding options to a select from a JSON object using jQuery?
I'm looking for something that I don't need a plugin to do, but would also be interested in the plugins that ...
134
votes
28answers
128k views
How to concatenate two arrays in Java?
I need to concatenate two String arrays in Java.
void f(String[] first, String[] second) {
String[] both = ???
}
What is the easiest way to do this?
132
votes
8answers
124k views
Best way to find an item in a JavaScript array?
What is the best way to find if an object is in an array?
This is the best way I know:
function include(arr, obj) {
for(var i=0; i<arr.length; i++) {
if (arr[i] == obj) return true;
...
130
votes
6answers
57k views
122
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?
114
votes
12answers
50k views
So you think you know pointers?
I was shown this recently, and thought this was a really cool piece of code. Assume 32-bit architecture.
#include <stdio.h>
int main(void) {
int x[4];
printf("%p\n", (void*) (x));
...
111
votes
11answers
71k views
Length of Javascript Associative Array
If I have a javascript associative array say:
var myArray = new Object();
myArray["firstname"] = "Gareth";
myArray["lastname"] = "Simpson";
myArray["age"] = 21;
Is there a built in or accepted best ...
106
votes
28answers
37k views
Why do we use arrays instead of other data structures?
As I was programming, I haven't seen an instance where an array is better for storing information than another form thereof. I had indeed figured the added "features" in programming languages had ...
104
votes
10answers
3k views
Why huge performance hit 2048x2048 array versus 2047x2047?
I am making some matrix multiplication benchmarking, as previously mentioned in
Why is matlab so fast in matrix multiplication?
Now I've got another issue, when multiplying two 2048x2048 matrices, ...
75
votes
6answers
91k views
Simplest way to print an array in Java
What's the simplest way of printing an array of primitives or of objects in Java? Here are some example inputs and outputs:
int[] intArray = new int[] {1, 2, 3, 4, 5};
//output: [1, 2, 3, 4, 5]
...
68
votes
5answers
3k views
How do I use arrays in C++?
C++ inherited arrays from C where they are used virtually everywhere. C++ provides abstractions that are easier to use and less error-prone (std::vector<T> since C++98 and std::array<T, n> ...
67
votes
13answers
22k views
Preferred method to store PHP arrays (json_encode vs serialize)
I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast ...
66
votes
4answers
2k views
Weird “[]” after Java method signature
I looked at some Java code today, and I found some weird syntax:
public class Sample {
public int get()[] {
return new int[]{1, 2, 3};
}
}
I thought that can't compile and wanted to fix ...
66
votes
12answers
189k views
How to initialize an array in C
I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, ...
65
votes
3answers
2k views
What Haskell representation is recommended for 2D, unboxed pixel arrays with millions of pixels?
I want to tackle some image-processing problems in Haskell. I'm working with both bitonal (bitmap) and color images with millions of pixels. I have a number of questions:
On what basis should I ...
64
votes
3answers
2k views
Strange behaviour after loop by reference - Is this a PHP bug?
I just had some very strange behavior with a simple php script I was writing. I reduced it to the minimum necessary to recreate the bug:
<?php
$arr = array("foo",
"bar",
...
64
votes
5answers
2k views
Why declare a struct that only contains an array in C?
I came across some code containing the following:
struct ABC {
unsigned long array[MAX];
} abc;
When does it make sense to use a declaration like this?
61
votes
10answers
61k views
Java how to: Generic Array creation
Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety?
public class GenSet<E> {
private E a[];
public ...
58
votes
6answers
2k views
Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com)
I was going through the exercises at http://rubykoans.com/ and I was struck by the following Ruby quirk that I found really unexplainable:
array = [:peanut, :butter, :and, :jelly]
array[0] => ...
58
votes
25answers
13k views
PHP Arrays: A good way to check if an array is associative or sequential?
PHP treats all arrays as associative, so there aren't any built in functions. Can anyone recommend a fairly efficient way to check if an array contains only numeric keys?
Basically, I want to be able ...
58
votes
11answers
40k views
.Net Data structures: ArrayList, List, HashTable, Dictionary, SortedList, SortedDictionary — Speed, memory, and when to use each?
.Net has a lot of complex data structures. Unfortunately, some of them are quite similar and I'm not always sure when to use one and when to use another. Most of my C# and VB books talk about them to ...
57
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 ...
55
votes
6answers
57k views
How to delete an element from an array in php?
does anyone know an easy way to delete an element from a php array? I mean so that foreach($array) no longer includes that element. I thought that setting it to null would do it, but apparently not.
53
votes
15answers
3k views
Help with interview question
I was asked this question on in a recent Java telephonic interview:
You are given an NxN binary (0-1) matrix with following properties:
Each row is sorted (sequence of 0's followed by sequence of ...
53
votes
6answers
3k views
List of Big-O for PHP functions
After using PHP for a while now, I've noticed that not all PHP built in functions as fast as expected. Consider the below two possible implementations of a function that finds if a number is prime ...
51
votes
1answer
32k views
Javascript - Insert Item into Array at a Specific Index
I am looking for a JavaScript array insert method, in the style of:
arr.insert(index, item)
Preferably in jQuery, but any JavaScript implementation will do at this point because I can't believe the ...
47
votes
3answers
2k views
Difference between char and char[1]
In C++ what is the difference (if any) between using char and char[1].
examples:
struct SomeStruct
{
char x;
char y[1];
};
Do the same reasons follow for unsigned char?
47
votes
13answers
3k views
std::vector is so much slower than plain arrays?
I've always thought it's the general wisdom that std::vector is "implemented as an array," blah blah blah. Today I went down and tested it, seems to be not so:
Here's some test results:
UseArray ...
46
votes
14answers
4k views
Interview Q: given an array of numbers, return array of products of all other numbers (no division)
I was asked this question in a job interview, and I'd like to know how others would solve it. I'm most comfortable with Java, but solutions in other languages are welcome.
Given an array of ...
46
votes
10answers
7k views
Array versus List<T>: When to use which?
MyClass[] array;
List<MyClass> list;
What are the scenarios when one is preferable over the other? And why?
43
votes
23answers
2k views
Interview Question, What do they want to accomplish?
I was on a technical job interview today, and it was time to give me some programming exercises.
I finally came to the last question:
Given the numbers:
116 104 105 115 32 105 115 32 99 111 114 114 ...
43
votes
8answers
18k views
How can I reverse a NSArray in Objective-C?
I need to reverse my NSArray.
As an example:
[1,2,3,4,5] must become [5,4,3,2,1]
What is the best way to achieve this?
42
votes
15answers
9k views
How to find a duplicate element in an array of shuffled consecutive integers?
I recently came across a question somewhere:
Suppose you have an array of 1001 integers. The integers are in random order, but you know each of the integers is between 1 and 1000 (inclusive). In ...
41
votes
5answers
6k views
PHP PDO: Can I bind an array to an IN() condition?
I'm curious to know if it's possible to bind an array of values to a placeholder using PDO. The use case here is attempting to pass an array of values for use with an IN() condition.
I'm not very ...
39
votes
7answers
21k views
Loop through array in JavaScript
In Java you can use a for() loop to go through objects in an array like so:
String[] myStringArray = {"Hello","World"};
for(String s : myStringArray)
{
//Do something
}
can you do the same in ...
39
votes
4answers
700 views
Why is 'for(var item in list)' with arrays considered bad practice in JavaScript?
Given a simple zero based, numerically indexed array:
var list = ['Foo', 'Bar', 'Baz'];
Many times, I have noticed that when someone suggests looping through variables in an array like this:
...
39
votes
4answers
14k views
Java: Anyway to declare an array in-line?
Let's say I have a method m() that takes an array of Strings as an argument. Is there a way I can just declare this array in-line when I make the call? i.e. Instead of:
String[] strs = {"blah", ...
37
votes
4answers
1k views
Why does C++ support memberwise assignment of arrays within structs, but not generally?
I understand that memberwise assignment of arrays is not supported, such that the following will not work:
int num1[3] = {1,2,3};
int num2[3];
num2 = num1; // "error: invalid array assignment"
I ...
37
votes
8answers
23k views
How to sort an array of javascript objects?
I read in the following JSON using Ajax and store the objects in an array:
var homes = [{
"h_id": "3",
"city": "Dallas",
"state": "TX",
"zip": "75201",
"price": "162500"
}, {
...
37
votes
8answers
53k views
C pointer to array/array of pointers disambiguation
What is the difference between the following declarations:
int* arr1[8];
int (*arr2)[8];
int *(arr3[8]);
What is the general rule for understanding more complex declarations?
37
votes
16answers
29k views
Easiest way to find duplicate values in a JavaScript array
I need to check a JavaScript array to see if there are any duplicate values. What's the easiest way to do this? I just need to find what the duplicated values are - I don't actually need their indexes ...
37
votes
10answers
18k views
Array slices in C#
How do you do it? Given a byte array:
byte[] foo = new byte[4096];
How would I get the first x bytes of the array as a separate array? (Specifically, I need it as an IEnumerable<byte>)
This ...
35
votes
8answers
16k views
Java array reflection: isArray vs. instanceof
Is there a preference or behavior difference between using:
if(obj.getClass().isArray()) {}
and
if(obj instanceof Object[]) {}
?
34
votes
11answers
2k views
Interview question: three arrays and O(N*N)
Assume we have three arrays of length N which contain arbitrary numbers of type long. Then we are given a number M (of the same type) and our mission is to pick three numbers A, B and C one from each ...
34
votes
8answers
14k views
How do you check if a variable is an array in JavaScript?
I would like to check whether a variable is either an array or a single value in JavaScript.
I have found a possible solution...
if (variable.constructor == Array)...
Is this the best way this can ...
34
votes
5answers
62k views
Getting the length of an array in Python
In python is this the only way to get the number of elements:
arr.__len__()
If so, why the strange syntax?