Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
4k views

jagged array in c

Is there such a thing as a jagged array in C or C++? When I compile this: int jagged[][] = { {0,1}, {1,2,3} }; I get this error: error: declaration of `jagged' as multidimensional array must have ...
5
votes
2answers
99 views

How do I sort jagged array by row in C#?

I have 2D jagged array. And I want to sort it by any rows. I've searched and found code for sorting by columns private static void Sort<T>(T[][] data, int col) { Comparer<T> ...
5
votes
1answer
450 views

How to initialize a jagged array in JavaScript?

Is it possible to have a jagged array in JavaScript? Here is the format of the data I want to store in a jagged array: (key)(value1, value2, value3) Can I put this in a jagged array?
5
votes
4answers
448 views

What is a jagged array?

What is a jagged array (in c#)? Any examples and when should one use it....
4
votes
2answers
568 views

How to get a dimension (slice) from a multidimensional array

I'm trying to figure out how to get a single dimension from a multidimensional array (for the sake of argument, let's say it's 2D), I have a multidimensional array: double[,] d = new double[,] { { 1, ...
4
votes
11answers
752 views

C#/C++: How to visualize muli-dimensional arrays

For example: A two-dimensional array can be visualized like a brick-wall with square bricks, where every brick represents a coordinate in our array. A 3-dimensional array can in the same way be ...
4
votes
5answers
1k views

Initialize a Jagged Array the LINQ Way

I have a 2-dimensional jagged array (though it's always rectangular), which I initialize using the traditional loop: var myArr = new double[rowCount][]; for (int i = 0; i < rowCount; i++) { ...
3
votes
3answers
91 views

What is the definition of a “true” multidimensional array and what languages support them?

Most of the programming books I have ever read, have the following line: "X language does not support true multidimensional arrays, but you can simulate (approximate) them with arrays of arrays." ...
3
votes
1answer
99 views

get first three elements of jagged array

My brain isn't working, I'm trying to grab the first three rows on this grid. I'm making a simple checkers game just to learn some new stuff. My code is grabbing the first three columns to initialize ...
3
votes
2answers
845 views

How to find unique values in jagged array

I would like to know how I can count the number of unique values in a jagged array. My domain object contains a string property that has space delimitered values. class MyObject { string ...
3
votes
2answers
291 views

Copy one jagged array ontop of another

How could I accomplish copying one jagged array to another? For instance, I have a 5x7 array of: 0, 0, 0, 0, 0, 0, 0 0, 0, 0, 0, 0, 0, 0 0, 0, 0, 0, 0, 0, 0 0, 0, 0, 0, 0, 0, 0 0, 0, 0, 0, 0, 0, 0 ...
3
votes
1answer
544 views

Parse jagged array in C#

I'm connecting to an external web service that is implemented using Apache Axis and SOAP 1.2. The web service returns a jagged object array like the one below. Looking at the XML the I have ...
3
votes
1answer
616 views

How does C# 3.0 jagged array performance optimization vs. rectangular arrays work?

In the Apress book "Illustrated C# 2008", pg. 343 notes: "One-dimensional arrays have specific instructions in the CIL that allow them to be optimized for performance. Rectangular arrays do not ...
3
votes
2answers
1k views

Converting from a jagged array to double pointer in C#

Simple question here: is there any way to convert from a jagged array to a double pointer? e.g. Convert a double[][] to double** This can't be done just by casting unfortunately (as it can in plain ...
2
votes
2answers
86 views

Setting value in jagged dictionary sets all values

I have a jagged dictionary: Dictionary<string, Dictionary<int, Dictionary<string, string>>> tierOptions = new Dictionary<string, Dictionary<int, Dictionary<string, ...
2
votes
5answers
103 views

Array of Arrays

How do you create an array of arrays in C#? I have read about creating jagged arrays but I'm not sure if thats the best way of going about it. I was wanting to achieve something like this: string[] ...
2
votes
5answers
512 views

Multidimensional arrays in Java and C#

In C# there are 2 ways to create mutlidimensional arrays. int[,] array1 = new int[32,32]; int[][] array2 = new int[32][]; for(int i=0;i<32;i++) array2[i] = new int[32]; I know that the first ...
2
votes
5answers
156 views

How do I get a reference to a single dimension of a Multidemensional Array in C#?

I've come across a problem where I'd like to create an Array table. That is a 2 dimensional array where the number of rows and columns are known at runtime before the table needs to be created. The ...
2
votes
2answers
226 views

Cast Array to Object Array

I have such method which accept jagged array of Objects. public void MyDataBind(object[][] data) I use it like this GoogleChart1.MyDataBind(new[] { new object[] { "September 1", 1 }, new object[] ...
2
votes
3answers
81 views

Why doesn't negative values for the second index in a jagged array work in Python?

For example, if I have the following (data from Project Euler): s = [[75], [95, 64], [17, 47, 82], [18, 35, 87, 10], [20, 4, 82, 47, 65], [19, 1, 23, 75, 3, 34], [88, 2, ...
2
votes
2answers
694 views

Avoiding Agnostic Jagged Array Flattening in Powershell

I'm running into an interesting problem in Powershell, and haven't been able to find a solution to it. When I google (and find things like this post), nothing quite as involved as what I'm trying to ...
2
votes
7answers
3k views

How to iterate a jagged array?

This has been driving me crazy for a few days. Why doesn't the following work? Dim arr(3, 3) As Integer For y As Integer = 0 To arr.GetLength(0) - 1 For x As Integer = 0 To ...
1
vote
2answers
29 views

Searching though an empty jagged array in VB.NET

So I have a function that looks up values in a jagged array, and it goes like this: Private Function Lookup(ByVal Search_path As String) As Integer Dim i As Integer = 0 Do Until ...
1
vote
1answer
88 views

C# DeepCopy routine

Can somebody please help me to write a DeepCopy routine for this matrix class I have ? I dont have a great deal of experience in C#. public class Matrix<T> { private readonly T[][] _matrix; ...
1
vote
1answer
175 views

CUDA Runtime error when copying to element of jagged array

On the host I have a jagged array implemented with a vector of vector of ints. To set up a jagged array on device, I started by allocating a pointer to a pointer of ints: int ** adjlist; // ...
1
vote
3answers
396 views

C# Fast way to find value in a jagged Array

I have a jagged Array String[][]. Now I need to find the array with a particular value in String[n][0] what i have a the moment is a simple foreach foo in bar{ if(foo[0]==needle){ return foo; } ...
1
vote
1answer
268 views

jagged arrays <-> multidimensional arrays conversion in ASP.NET

I would like some help to create the following convertions: A need to convert an 800*600 multidimensional array into a jagged array and then the same method in reverse (jagged array with the same ...
1
vote
4answers
188 views

Jagged Array Dimensions

I'm using jagged arrays and have a bit of a problem (or at least I think I do). The size of these arrays are determined by how many rows are returned in a database, so it is very variable. The only ...
1
vote
1answer
506 views

c# Wrapper to native c++ code, wrapping a parameter which is a pointer to an array

I have the following simple DLL in c++ un-managed code; extern "C" __declspec(dllexport) void ArrayMultiplier(float (*pointerArray)[3], int scalar, int length); void ArrayMultiplier(float ...
1
vote
5answers
1k views

C# Battleships Class/Structure

greetings, im am new to programming and at the moment developing a clone of the game battleships. i need to implement a fleet of 5 ships. this is what i have done so far: class Cell holds the status ...
1
vote
6answers
214 views

C : Problem with Jagged Arrays

I have the following code : int *edges[500]; char arr[] = {'c','d'}; edges[0] = arr; printf("%c - %c", edges[0][0],edges[0][1]); What I want displayed is c - d but what is actually being displayed ...
0
votes
4answers
72 views

C# Dynamic jagged array iteration

I apologize ahead of time for the length of this question...It's a little involved. I am writing a 'weighted sum' operation that's pretty simple; take n images, multiply each image by a specific ...
0
votes
4answers
80 views

How to create a jagged string array in c++?

I want to create jagged character two dimensional array in c++. int arrsize[3] = {10, 5, 2}; char** record; record = (char**)malloc(3); cout << endl << sizeof(record) << endl; for ...
0
votes
1answer
42 views

Set Inner Array in a Multidimensional Array in C#

I've created a multidimensional array and want to set the entire inner array equal to a separate (single dimensional) array. How can I do this, besides going through each position in the arrays and ...
0
votes
3answers
144 views

C# Using Linq to get column from jagged array

How do I get elements of a column from a jagged array as a flat array using Linq ???? public class Matrix<T> { private readonly T[][] _matrix; public Matrix(int rows, int cols) { ...
0
votes
1answer
85 views

How to return a jagged array

I have a function which use a 2D jagged array to save records from an SQL query. How do return the jagged array correctly? I tried something like: public string[][] GetResult() { return result; ...
0
votes
1answer
106 views

parsing facebook json in rails avoid error occurred while evaluating nil.[]

I am trying to parse a json returned from facebook. Now my idea is to get as much as detailks as possible from the facebook json. So I use like ( assume auth is parse json from facebook) ...
0
votes
2answers
108 views

Add Item to Jagged Array

It is a homework. I want to store names and total votes of electoral candidates for country provinces. In this practice I should use arrays. Since the number of candidates is not known I thinks I ...
0
votes
2answers
109 views

Jagged Array vs Array of Array

How do you think what can be difference between them? new object[][] { new object[] { "1" }, new object[] { "2" }, new object[] { "3" } } new object[] { new object[] { "1" }, new object[] { "2" }, ...
0
votes
2answers
155 views

fill 3-dimensional array(jagged array) with point data

I do have a 3-dimensional matrix private int[][][] Matrix but I dont know how to fill this. the first dimension is for my slices of a picture the second for my x-values of one slice ad the 3rd ...
0
votes
1answer
74 views

Ragged Arrays and For Loop errors

I get a bad access error in the middle of the for loop, always when i=4. Does anybody know the reason for this? It works until i=4, but I don't see why I wouldn't get the bad access error in any other ...
0
votes
5answers
87 views

How can I prevent duplication of a common loop in my solution?

I have this loop based on a jagged array below which I will need to use more than once at different places. How can I prevent myself to rewrite this loop again and again so that I will duplicate it? ...
0
votes
3answers
200 views

C# VB.NET: How to make a jagged string array a public property

all i want to do is this: Public Property TabsCollection()() as String()() Get Return _tabsCollection End Get Set(ByVal value()() as String()()) ...
0
votes
2answers
186 views

PHP: How to create a jagged array structure to represent grouped records from a database

This seems like a simple challenge, but I'm struggling. I want to retrieve records using a join query on two database tables and represent them as an array of arrays, whereby each of the elements in ...
0
votes
4answers
129 views

Using string in java array

I need to put several strings into a java array for example. "Dog","Cat","Lion","Giraffe" "Car","Truck","Boat","RV" each of the above would be 1 key in the array array[0] = ...
0
votes
3answers
202 views

Jagged Array in C (3D)

How could I do the following? double layer1[][3] = { {0.1,0.1,0.8}, {0.1,0.1,0.8}, {0.1,0.1,0.8}, {0.1,0.1,0.8} }; double layer2[][5] = { {0.1,0.1,0.1,0.1,0.8} }; double *upper[] ...
0
votes
2answers
248 views

Deleting a dynamically allocated jagged array (C++)

I have an array of pointers that point to arrays of ints. I have made a hard coded array of ints (check 'array' below) and I want to insert it into the array of pointers (check 'bar' below), as far as ...
0
votes
2answers
253 views

Convert Jagged array to several one-dimensional arrays

I wonder if there's a way to convert jagged array , say [3][] into three one-dimensional arrays ?
0
votes
3answers
176 views

Jagged arrays in C#

Im trying to store to array of ints in a jagged array: while (dr5.Read()) { customer_id[i] = int.Parse(dr5["customer_id"].ToString()); i++; } ...
0
votes
1answer
483 views

How to create multi-dimensional jagged arrays in VbScript?

I need to create multi-dimensional array of strings. Each row of the array can have varying number of strings. Something like the follwing code: twoDimension = Array(Array()) ReDim Preserve ...

1 2