63
votes
25answers
32k views
Arrays, What’s the point?
As I'm 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 …
42
votes
38answers
3k views
Defend zero-based arrays
A question asked here recently reminded me of a debate I had not long ago with a fellow programmer. Basically he argued that zero-based arrays should be replaced by one-based arrays since arrays being …
22
votes
9answers
911 views
Array Homework Question
You are given an array with integers between 1 and 1,000,000. One integer is in the array twice. How can you determine which one? Can you think of a way to do it using little extra memory.
Algo:
…
20
votes
4answers
781 views
Why does my C# array lose type sign information when cast to object?
Investigating a bug, I discovered it was due to this weirdness in c#:
sbyte[] foo = new sbyte[10];
object bar = foo;
Console.WriteLine("{0} {1} {2} {3}",
foo is sbyte[], foo is byte[], bar is …
18
votes
5answers
784 views
Why does “int[] is uint[] == true” in C#
Can somebody clarify the C# is keyword please. In particular these 2 questions:
Q1) line 5; Why does this return true?
Q2) line 7; Why no cast exception?
public void Test()
{
object intArray = …
18
votes
14answers
3k views
Is there any way to determine the size of a C++ array programmatically? And if not, why?
This question was inspired by a similar question: How does delete[] “know” the size of the operand array?
My question is a little different: Is there any way to determine the size of a C++ array …
17
votes
12answers
6k views
How to declare an array of strings in C++?
I am trying to iterate over all the elements of a static array of strings in the best possible way. I want to be able to declare it on one line and easily add/remove elements from it without having to …
14
votes
61answers
5k views
Language showdown: Convert string of digits to array of integers?
I was trying to convert a string containing only base 10 digits (e.g. "124890") to an array of corresponding integers (for given example: [1, 2, 4, 8, 9, 0]), in Ruby.
I'm curious about how easily …
13
votes
19answers
2k views
Rosetta Stone - Sorting Arrays
I thought I would pose a question I'm describing as a "Rosetta Stone". That is to say, I am posing a question, and would like to see answers given for a number of different languages so that someone …
12
votes
3answers
664 views
SFINAE with invalid function-type or array-type parameters?
Please consider this code:
template<typename T>
char (&f(T[1]))[1];
template<typename T>
char (&f(...))[2];
int main() { char c[sizeof(f<void()>(0)) == 2]; }
I expected …
12
votes
14answers
995 views
When teaching C, is it better to teach arrays before or after pointers?
For those of you with curriculum development experience: what is the best strategy regarding arrays?
I have seen some schools that teach arrays after variables and control structures, often before …
12
votes
6answers
3k 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[]) {}
?
12
votes
7answers
695 views
How to deal with arrays (declared on the stack) in C++?
I have a class to parse a matrix that keeps the result in an array member:
class Parser
{
...
double matrix_[4][4];
};
The user of this class needs to call an API function (as in, a function I …
11
votes
9answers
2k views
When to use ArrayList over array[] in c#?
I often use an ArrayList instead of a 'normal' array[].
I feel as if I am cheating (or being lazy) when I use an ArrayList, when is it okay to use an ArrayList over an array?
11
votes
6answers
5k 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 …
