Tagged Questions
Multidimensional-arrays can be described as "arrays of arrays". Multidimensional-arrays are often used to put values in a table format (e.g. rows and columns).
69
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> ...
37
votes
4answers
9k views
What is differences between Multidimensional array and Array of Arrays in C#?
What is differences between Multidimensional array and Array of Arrays in C#? if there a difference.
What is the best use for each one?
34
votes
20answers
19k views
How do you rotate a two dimensional array?
Inspired by Raymond Chen's post, say you have a 4x4 two dimensional array, write a function that rotates it 90 degrees. Raymond links to a solution in pseudo code, but I'd like to see some real world ...
29
votes
14answers
4k views
Given a 2d array sorted in increasing order from left to right and top to bottom, what is the best way to search for a target number?
I was recently given this interview question and I'm curious what a good solution to it would be.
Say I'm given a 2d array where all the
numbers in the array are in increasing
order from left ...
27
votes
3answers
942 views
Optimal bubble sorting algorithm for an array of arrays of numbers
Fix positive integers n and k.
Let A be an array of length n with A[i] an array of length k where every entry is n-i. For example, with n=5 and k=1, this is just
[ [5] , [4] , [3] , [2] , [1] ]
...
24
votes
10answers
5k views
Fastest way to zero out a 2d array in C?
I want to repeatedly zero a large 2d array in C. This is what I do at the moment:
for(j = 0; j < n; j++)
{
for(i = 0; i < n; i++)
{
array[i][j] = 0;
}
}
I've tried using ...
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 ...
18
votes
5answers
10k views
How to initialize a two-dimensional array in Python?
I'm beginning python and I'm trying to use a two-dimensional list, that I initially fill up with the same variable in every place. I came up with this:
def initialize_twodlist(foo):
twod_list = ...
18
votes
15answers
2k views
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values
Given an n×n matrix of real numbers. You are allowed to erase any number (from 0 to n) of rows and any number (from 0 to n) of columns, and after that the sum of the remaining entries is computed. ...
15
votes
4answers
236 views
May I treat a 2D array as a contiguous 1D array?
Consider the following code:
int a[25][80];
a[0][1234] = 56;
int* p = &a[0][0];
p[1234] = 56;
Does the second line invoke undefined behavior? How about the fourth line?
14
votes
4answers
386 views
A pointer to 2d array
I have a question about a pointer to 2d array. If an array is something like
int a[2][3];
then, is this a pointer to array a?
int (*p)[3] = a;
If this is correct, I am wondering what does [3] ...
13
votes
6answers
338 views
Confusion in multi dimensional array in Java
I'm not able to understand the following multi-dimensional code. Could someone please clarify me?
int[][] myJaggedArr = new int [][]
{
new int[] {1,3,5,7,9},
new int[] ...
12
votes
6answers
802 views
Is it possible to dynamically build a multi-dimensional array in Java?
Suppose we have the Java code:
Object arr = Array.newInstance(Array.class, 5);
Would that run? As a further note, what if we were to try something like this:
Object arr1 = ...
12
votes
8answers
679 views
Is it bad practice to use multi-dimensional arrays in C/C++?
Some programmers seem to violently hate them, while others seem to think they're fine. I know that anything that can be done to a multi-dimensional array can also be done to a regular array, so ...
11
votes
5answers
141 views
what is a true multi dimensional array?
I was reading a book about Javascript and saw this line;
JavaScript does not support true multidimensional arrays, but you can
approximate them with arrays of arrays.
What's the difference?
11
votes
1answer
97 views
Multi-dimensional array vs. multiple arrays
I need help with some PHP code. I am retrieving data from a MySQL database using left joins. Based on these records I am creating nested arrays which I want to be clean, e.g.:
array(
[0] = array(
...
10
votes
5answers
146 views
Convert Flat PHP Array to Nested Array based on Array Keys?
I need to convert a flat array where the array keys indicate the structure into a nested array where the parent element becomes element zero, i.e. in the example:
$education['x[1]'] = 'Georgia Tech';
...
10
votes
4answers
1k views
Matrix Transpose in Python
I am trying to create a matrix transpose function for python but I dont seem to make it work.
Say I have
theArray = [['a','b','c'],['d','e','f'],['g','h','i']]
and I want my function to come up ...
10
votes
5answers
570 views
if without condition?
I just found this "C++" today and i cannot make sense of it:
if(array[i][j]) {--i;--j;}
can anyone explains to me how this work? I just don't get it. What is the condition here? It seems like it ...
10
votes
2answers
4k views
Selecting a multi-dimensional array in LINQ
I have a task where I need to translate a DataTable to a two-dimensional array. That's easy enough to do by just looping over the rows and columns (see example below).
private static string[,] ...
9
votes
3answers
101 views
Initializing multidimentional arrays in c# (with other arrays)
In C#, it's possible to initialize a multidimentional array using constants like so:
Object[,] twodArray = new Object[,] { {"00", "01", "02"},
{"10", "11", ...
9
votes
5answers
4k views
How to sort an array of objects with jquery or javascript
I have an array of objects:
var array = [(id, name, value),(id, name, value)]; //and so on
How do I get the array to be sorted in ascending order of the atribute name (array[i][1])?
I've tried to ...
9
votes
2answers
5k views
Submitting a multidimensional array via POST with php
I have a php form that has a known number of columns (ex. top diameter, bottom diameter, fabric, colour, quantity), but has an unknown number of rows, as users can add rows as they need.
I've ...
9
votes
7answers
3k views
Matrix from Python to MATLAB
I'm working with Python and MATLAB right now and I have a 2D array in Python that I need to write to a file and then be able to read it into MATLAB as a matrix. Any ideas on how to do this?
Thanks!
8
votes
2answers
436 views
Seating people in a movie theater
This is based on an article I read about puzzles and interview questions asked by large software companies, but it has a twist...
General question:
What is an algorithm to seat people in a movie ...
8
votes
4answers
299 views
Mapping a numpy array in place
Is it possible to map a numpy array in place? If yes, how?
Given a_values - 2D array - this is the bit of code that does the trick for me at the moment:
for row in range(len(a_values)):
for col ...
8
votes
3answers
326 views
Iteration through all 1 dimensional subarrays of a multi-dimensional array
What is the fastest way to iterate through all one dimensional sub-arrays of an n dimensional array in python.
For example consider the 3-D array:
import numpy as np
a = np.arange(24)
a = ...
8
votes
5answers
6k views
in_array() and multidimensional array
I use in_array() to check whether a value exists in an array like below,
$a = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $a))
{
echo "Got Irix";
}
//print_r($a);
but what about ...
8
votes
3answers
403 views
Are there any jquery features to query multi-dimensional arrays in a similar fashion to the DOM?
What the question says...
Does jQuery have any methods that will allow you to query a mult-dimensional array of objects in a similar fashion as it does with the DOM.
So for instance, get me a list ...
8
votes
7answers
2k views
C / C++ How to copy a multidimensional char array without nested loops?
I'm looking for a smart way to copy a multidimensional char array to a new destination. I want to duplicate the char array because I want to edit the content without changing the source array.
I ...
7
votes
2answers
118 views
C weird array syntax in multi-dimensional arrays
I've known that this is true:
x[4] == 4[x]
What is the equivalent for multi-dimensional arrays? Is the following true?
x[4][3] == 3[x[4]] == 3[4[x]]
7
votes
2answers
476 views
Transaprently flatten an array
Reading this question Merge and group by several arrays i got the following idea: when working with multilevel arrays, with possibly repeating keys, it would be practical to have a function that would ...
7
votes
3answers
235 views
JavaScript: Automatically order a variable multi-dimensional array diagonally
This is more like a math related question.
I'm trying to create a cute fading effect with jQuery, by splitting a element in a certain number of blocks, then fading each of them, but delay the fading ...
7
votes
2answers
265 views
Fastest way to fill a matrix with Random bytes
I want to fill an array with random values. The code I wrote is this one:
public class PersonalityMap
{
const int size = 16;
byte[,] fullMap = new byte[size, size];
/// <summary>
...
7
votes
1answer
280 views
What is R's multidimensional equivalent of rbind and cbind?
When working with matrices in R, one can put them side-by-side or stack them top of each other using cbind and rbind, respectively. What is the equivalent function for stacking matrices or arrays in ...
7
votes
5answers
2k views
Java ArrayList of Arrays?
I want to create a mutli dimensional array without a fixed size.
I need to be able to add items of String[2] to it.
I have tried looking at:
private ArrayList<String[]> action = new ...
7
votes
5answers
221 views
Is it possible to count the number of dimensions in an array?
I want to be able to know the level of an array as it is being built.
The code loops through a bunch of directories to create a massive multi-dimensional array.
As the array is being created, I want ...
7
votes
3answers
275 views
What does (int (*)[])var1 stand for?
I found this example code and I tried to google what (int (*)[])var1 could stand for, but I got no usefull results.
#include <unistd.h>
#include <stdlib.h>
int i(int n,int m,int ...
7
votes
5answers
904 views
Fastest way to read/store lots of multidimensional data? (Java)
I have three questions about three nested loops:
for (int x=0; x<400; x++)
{
for (int y=0; y<300; y++)
{
for (int z=0; z<400; z++)
{
// compute and store ...
7
votes
5answers
3k views
Malloc a 3-Dimensional array in C?
I'm translating some MATLAB code into C and the script I'm converting makes heavy use of 3D arrays with 10*100*300 complex entries. The size of the array also depends on the sensor's input, ideally ...
7
votes
5answers
4k views
How to Flatten a Multidimensional Array?
Is it possible, in PHP, to flatten a (bi/multi)dimensional array without using recursion or references?
I'm only interested in the values so the keys can be ignored, I'm thinking in the lines of ...
7
votes
5answers
5k views
Iterating through a multidimensional array in Python
I have created a multidimensional array in Python like this:
self.cells = np.empty((r,c),dtype=np.object)
Now I want to iterate through all elements of my twodimensional array, and I do not care ...
6
votes
3answers
89 views
C# - Array assignment Snake
Working in a business environment, I dont really get to code or use the good old console anymore. My work is repetitive and thus not really challenging.
I decided to challenge myself by writing a ...
6
votes
3answers
97 views
Iterate through 2D Array block by block in C++
I'm working on a homework assignment for an image shrinking program in C++. My picture is represented by a 2D array of pixels; each pixel is an object with members "red", "green" and "blue." To solve ...
6
votes
4answers
77 views
Multidimentional array sort in AS3
What would be the easiest way to do a multi sort in AS3. Something similar to array_multisort() in PHP... like this: sort a multidimentional array using array_multisort
What I have
var ...
6
votes
4answers
417 views
less verbose way to declare multidimensional std::array
Short question:
Is there a shorter way to do this
array<array<atomic<int>,n>,m> matrix;
I was hoping for something like
array< atomic< int>,n,m> matrix;
but ...
6
votes
3answers
178 views
macro for simulating access two dimensional array in C
OpenCL only offers access to single dimensional arrays using the C99 specs. My problem however is in two dimensions and I am using two dimensional arrays on the host side
Rather than making my code ...
6
votes
4answers
287 views
One-dimensional access to a multidimensional array: well-defined C?
I imagine we all agree that it is considered idiomatic C to access a true multidimensional array by dereferencing a (possibly offset) pointer to its first element in a one-dimensional fashion, e.g.:
...
6
votes
7answers
484 views
java: multidimensional generic array creation
How do I make a multidimensional array of generic items in java?
Consider the class:
class A<T>
{
T t;
public A(T t) { this.t = t; }
}
When I try to create a multidimensional ...
6
votes
2answers
204 views
Is there a better way to iterate over multidimensional array?
I have a dynamic 3d array of numbers and currently I'm doing it like I usually would in C:
for (auto i = 0; i < size; i++) {
for (auto j = 0; j < size; j++) {
for (auto k = 0; k ...