Tagged Questions
An array which stores values with 2 indices
19
votes
9answers
37k views
How to create a two dimensional array in javascript?
I have been reading online and some places say it isnt possible, some say it is and then give an example and others refute the example, etc.
How do I declare a 2 dimensional array in js? (assuming ...
8
votes
4answers
1k views
Algorithm for finding nearest object on 2D grid
Say you have a 2D grid with each spot on the grid having x number of objects (with x >=0). I am having trouble thinking of a clean algorithm so that when a user specifies a coordinate, the algorithm ...
8
votes
9answers
431 views
What are the differences between using int[][] and int[,]?
Coming from a perl background, I have always defined a 2D array using int[][]. I know you can use int[,] instead so what are the differences?
6
votes
7answers
1k views
Passing pointer to 2D array c++
I'm having this problem for quite a long time - I have fixed sized 2D array as a class member.
class myClass
{
public:
void getpointeM(...??????...);
double * retpointM();
private:
...
6
votes
7answers
486 views
What is meant by 2D array support?
I read that Python does not actually support 2D arrays but rather an array of an array. I understand the array of an array thing but what does it mean by supporting 2D arrays?
In C a 2D array is ...
6
votes
6answers
1k views
Implementing a matrix, which is more efficient - using an Array of Arrays (2D) or a 1D array?
When implementing a Matrix construct using arrays, which would be more efficient?
Using a 1D array, or an array of arrays (2D)?
I would think a 2D is more efficient as you already have the X and Y ...
5
votes
2answers
103 views
How is a dynamic 2D array stored in memory?
How is a 2D array stored in memory?
I thought about the following approach, where rows are stored as contigous blocks of memory.
|_________||_________|________|________|...|_________|
The elements ...
5
votes
2answers
386 views
What is an effective method of traversing a 2d Array vertically to programatically find an “empty” set?
First off, this isn't homework ;). I'm trying to create a wordsearch game from scratch and have hit a barrier I need some guidance on.
I'm using a 2d array of chars to for the grid of a wordsearch. ...
5
votes
6answers
327 views
Seg Fault when initializing array
I'm taking a class on C, and running into a segmentation fault. From what I understand, seg faults are supposed to occur when you're accessing memory that hasn't been allocated, or otherwise outside ...
4
votes
4answers
174 views
2d boolean array initialization in c++
I don't use C that much and I recently got confused about 2d array initialization problem. I need to debug somebody's code and stuck in the following(her original code):
const int location_num = ...
4
votes
4answers
301 views
Memory map for a 2D array in C
Do you think what this discussion about memory-map of 2D array is correct? Especially this photo? Can you explain the theory?
Suppose we declare a 2D array in C like this:
int arr[3][3]={10, 20, 30, ...
4
votes
3answers
517 views
Divide grid (2D array) into random shaped parts?
The Problem
I want to divide a grid (2D array) into random shaped parts (think earth's tectonic plates).
Criteria are:
User inputs grid size (program should scale because this could be very ...
4
votes
4answers
2k views
C Programming: malloc() for a 2D array (using pointer-to-pointer)
yesterday I had posted a question: How should I pass a pointer to a function and allocate memory for the passed pointer from inside the called function?
From the answers I got, I was able to ...
3
votes
3answers
120 views
For-each and assigning to a 2d array Java
I'm using a for-each loop to move through a 2d array of chars in a basic java program. It works, except for a small part at the end. Here is my class:
static String letters = ...
3
votes
4answers
76 views
javascript array of arrays
I have the following arrays:
var dates = new Array();
var answers = new Array();
Once Populated, they will be the same length. What I need is an array that pair the same index values of the arrays. ...
3
votes
5answers
595 views
C: “invalid use of undefined type ‘struct X’ & dereferencing pointer to incomplete type” errors
I've been perusing similar questions to mine for a couple of days but still haven't found a solution. Thanks any any help:
I have two files, one containing methods for dealing with rational numbers ...
3
votes
5answers
362 views
C++: TwoDimensional Array: One dimension fixed?
I need to pass a double [][6] to a method. But I don't know how to create that two-dimensional array.
6 is a fixed size (or a "literal constant", if my terminology is right), which the method ...
3
votes
3answers
348 views
How to manage 2d array in Smalltalk?
I have a list of point and have to do erosion/dilation operations. I need a kind of 2d-array but can't find how to do in VisualWorks (I know there is a Array2d class in Squeak, but I must use VW).
3
votes
3answers
4k views
2D Javascript array
Simply put, is there a way to create a 2D javascript array using similar syntax to this?
var newArray = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8]
]
2
votes
5answers
72 views
How to declare extern 2d-array in header?
We have this declaration in LCD.c:
unsigned char LCD[8][64] = {((unsigned char) 0)};
And in LCD.h we want to have something like:
extern unsigned char LCD[][];
We get this error:
Error[Pe098]: ...
2
votes
3answers
91 views
Pass a 2-D array as an argument to function
If I dont know the size of both the dimensions of array and want to print a matrix using the following code
void printAnyMatrix(int (*A)[], int size_A, int size_B)
{
for (int ...
2
votes
3answers
85 views
Assigning and Deleting Pointers
Okay, so here's the context. I've been up for almost a day straight now working on the legendary 8-puzzle problem. I have my heuristics down and my A_star algorithm down. We are required by the ...
2
votes
2answers
121 views
For Each loop on a 2D array in VB.NET
I'm writing a loop to go through the first array of a 2D loop, and I currently have it like this:
For Each Dir_path In MasterIndex(, 0)
'do some stuff here
Next
But it's giving me an error, ...
2
votes
2answers
35 views
SQL structure for holding arrays?
How can I relate a table with multiple records from another table?
Basically, I have a table for an 'event', how do I keep track of which 'users' (in their own seperate table) are in a particular ...
2
votes
3answers
264 views
“cannot read property 0 of undefined” in 2d array
Does anyone know why this gives an error? I've been trying at it way too long and I can't seem to figure it out. It errors with "cannot read property 0 of undefined", but it is clearly defined. (or so ...
2
votes
2answers
75 views
Is it possible to add Shapes from a Canvas to a 2D array, where the 2D array location is that of a Grid control cell underneath?
I know this seems like a complete mess of a question but here goes:
I'm essentially created a simulation within silverlight as a programming exercise.
I have a semi opaque canvas that lives on top of ...
2
votes
2answers
53 views
How to cycle by cell in the column direction of a 2D array
Okay, This is just for interest's sake:
If for some reason, I want to move down the 'column' of a 2-D array. How would I do it?
#LEGEND FOR BELOW#
##Each index of @all_matches, de-referenced, (ie. ...
2
votes
1answer
115 views
Cuda replacing double for with 2D block
I'm really new to CUDA and have been trying to traverse a 2D array. I have the following code which works as expected on plain C:
for (ty=0;ty<s;ty++){
if (ty+pixY < s && ...
2
votes
4answers
264 views
How to compare two 2d arrays
i am using visual studio c# win form. . . i have 2d array of textboxes and i have another 2d array of valid solved sudoku i want to compare textbox's text to sudoku array but its not working.Here is ...
2
votes
1answer
664 views
2D array plotting in matplotlib
I was trying to plot a 2D array vs a 1D array with pyplot. I can do that with no problems and columns in the 2D array are treated like two different sets of Y datas, which is what i want. What i don't ...
2
votes
3answers
2k views
How to convert a 1d array to 2d array?
Say, I have a 1d array with 30 elements:
array1d[0] = 1
array1d[1] = 2
array1d[2] = 3
.
.
.
array1[29] = 30
How to convert the 1d array to 2d array?
Say 10x3?
array2d[0][0] = 1 ...
2
votes
3answers
171 views
2d array representation
The question is not tied to a specific programming language, but rather to minimalistic code and abstraction.
I have this array of 3 rows and 3 columns - imagine a board in which you'd play ...
2
votes
2answers
286 views
How do I hash a 2-d array efficiently (to be stored in a HashSet)?
I've written a class called PuzzleBoard that represents an nxn board. I will be keeping several PuzzleBoard objects in a HashSet, so I have to overwrite the 'int hashCode()' method.
Below are the ...
2
votes
3answers
243 views
Getting a very annoying segmentation fault… mallocing 2d array in C
I'm having a little trouble with this. First of all, this is for a simple graphics library that I was writing.
What I'm doing is making it possible to declare multiple "virtual screens", with ...
2
votes
6answers
1k views
Sum integers in 2d array using recursion?
I need some help with this problem. I have to sum alle the integers in a 2d array using recursion. Below is what I have managed to do on my own, but I'm stuck. This code generates the sum 14, which ...
2
votes
3answers
2k views
how to convert 2D binary matrix to black & white plot?
i have a 2D binary matrix that i want to convert as a plot of black and white matrix.. please how this can be done ? can you please provide me with a code?
let say i have 4*2 matrix
it's entry as ...
2
votes
3answers
266 views
C# 2-d array concatenation
Is there a more performant way to concatenate 2-d arrays than this?
static void Main(string[] args)
{
int[][] array1 = { new int[] { 1, 2, 3 }, new int[] { 4, 5, 6 }, new int[] { 7, 8, ...
2
votes
4answers
317 views
Reallocate a 2d char array
I have following code
int wordLenght = 256, arrayLength = 2, i = 0, counter = 0;
char **stringArray = NULL;
stringArray = calloc(arrayLength, sizeof(*stringArray));
for(counter; ...
2
votes
3answers
632 views
Sorting 2D array of chars C++
I have a 2d array of chars where in each row I store a name... such as this:
J O H N
P E T E R
S T E P H E N
A R N O L D
J A C K
How should I go about sorting the array so that I end up with
A R N ...
2
votes
1answer
828 views
initialising a 2-dim Array in Scala
(Scala 2.7.7:) I don't get used to 2d-Arrays. Arrays are mutable, but how do I specify a 2d-Array which is - let's say of size 3x4. The dimension (2D) is fixed, but the size per dimension shall be ...
2
votes
2answers
49 views
Language to define references between elements in a 2D array/grid
Has someone created a language which can be used to track/analyze dependencies between grid cells in a generic way?
I'm trying to write a spreadsheet which uses a functional language. What I'm after ...
2
votes
5answers
467 views
Python - best way to set a column in a 2d array to a specific value
I have a 2d array, I would like to set a column to a particular value, my code is below. Is this the best way in python?
rows = 5
cols = 10
data = (rows * cols) *[0]
val = 10
set_col = 5
for row in ...
2
votes
4answers
707 views
Get adjacent elements in a two-dimensional array?
I have a two-dimensional array, say
0 0 0 0 0
0 2 3 4 0
0 9 1 5 0
0 8 7 6 0
0 0 0 0 0
And i need to get all the numbers adjacent to 1(2, 3, 4, 5, 6, 7, 8, 9)
Is there a less ugly solution than:
...
2
votes
9answers
4k views
How to allocate a 2D array of pointers in C++
I'm trying to make a pointer point to a 2D array of pointers. What is the syntax and how would I access elements?
2
votes
2answers
1k views
Jquery atrr + 2D array issue
i have the following script and i can't find out how to use the value inside car[0]['img'] inside this $('#img2').attr('src',car[0]['img']);
im a JS noob so please explain me .. why jquery wont ...
2
votes
5answers
5k views
How to copy a row of values from a 2D array into a 1D array?
We have the following object
int [,] oGridCells;
which is only used with a fixed first index
int iIndex = 5;
for (int iLoop = 0; iLoop < iUpperBound; iLoop++)
{
//Get the value from the 2D ...
1
vote
1answer
78 views
How to convert a 2d array in String to int?
My program is to input a txt file into a 2d array use to calculate and present some data.
my input file look like:
[Student], Exam1, Exam2, Exam3
may, 100, 100, 100
peter, 99, 60, 80
john, 100, ...
1
vote
2answers
71 views
dynamic allocation of rows of 2D array in c++
In c++, I can create a 2D array with fixed number of columns, say 5, as follows:
char (*c)[5];
then I can allocate memory for rows as follows
c = new char[n][5];
where n can be any variable ...
1
vote
1answer
82 views
Most time-efficient way of storing a 2D array in binary files
I need suggestions about storing a 2D array in a binary file.
I need it to be extensive, to be able to add new rows and columns very fast.
So far i've come up with this approach: i allocate a fixed ...
1
vote
2answers
41 views
How to project 2D array into new array in Ruby?
source_array = Array.new(5) { Array.new(10) }
source_array[3][4] = 0
source_array[2][5] = 1
source_array[4][2] = 0.5
Now, to create a new array destination_array of the same dimensions as ...