1
vote
9answers
208 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.
0
votes
3answers
60 views
list of 2D array in java
Hi
i have set of 2D arrays and i want store all 2D arrays into single list how can do this in java?
1
vote
6answers
183 views
Dynamic programming - Largest square block
I need to find the largest square of 1's in a giant file full of 1's and 0's. I know i have to use dynamic programming. I am storing it in a 2D array. Any help with the algorithm t …
1
vote
5answers
47 views
How do you get a data value associated with a specific col,row from a 2-d array in java?
here is the code I have written in java I think it is right. I am just not sure what to set result to? I want to return the element associated with the specific row column
public …
0
votes
4answers
41 views
Segmentation fault, using pointers to pointers
So I'm starting my magic square hw, where I ask the user to enter a odd integer, and it will create a magic square off that. I have to use pointers and arrays as that is all I have …
0
votes
4answers
118 views
Concatenating 2 2D arrays in java?
I've got 2 2D arrays, one int and one String, and I want them to appear one next to the other since they have the same number of rows. Is there a way to do this? I've thought about …
0
votes
7answers
365 views
C++ Passing two dimensional arrays as parameters to classes
I've got a Car class and a Track class. The Car class constructor takes a road parameter which is supposed to be a 32x32 boolean array. Then I've got a Track class which creates …
1
vote
2answers
86 views
How can I draw a “line” in a 2-D array (simulacrum for a screen)
Hello! I'm working on a project that's going to print out to a bitmap(more specifically a RAW, but that's not important to the question), but I'm working in a 2-D array in-program. …
1
vote
2answers
72 views
Jquery atrr + 2D array issue
Hello , 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 …
0
votes
3answers
135 views
How to get the ‘diff’ between arrays in Java
I am attempting to write some test cases for some classes that involve testing the equality of two dimensional arrays of data. Here is my first stab at it:
double[][] expected = …
0
votes
4answers
293 views
Problems deleting a 2D dynamic array in C++ (which is eventually store in a vector)
So I have this 2d dynamic array which content I want to free when I am done with it. However I keep running into a heap corruption after the destructor. The code works fine (of cou …
5
votes
8answers
250 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?
1
vote
3answers
844 views
How to use a two-dimensional C array of Objective-C objects?
I have a two-dimensional C array of Objective-C objects. How do I access the members of those objects?
id array[5][5];
array[0][0] = [[Ball alloc] init];
The Ball class has two …
0
votes
4answers
292 views
Initializing 2D int array
Hello.
I got this code from a c++ book, and I cannot figure out how the initialization works.
From what I can see, there is an outer for loop cycling trough the rows, and the inne …
3
votes
8answers
1k 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 arr …
