Arrays without fixed size.

learn more… | top users | synonyms (1)

0
votes
3answers
42 views

class that simulates bi-dimensional table in JAVA

public class table { private int raw=0; private int column=0; private List<ArrayList<Integer>> TABLE ; private static int COUNT_ELEMENTS_IN_RAW=0; private static int ...
0
votes
2answers
23 views

Getting date range grouped by month

I have an form where users can select a date range. For example, a date range could be: $start = "5/1/2013"; $end = "6/5/2013"; I can easily grab the day difference between the two by doing ...
1
vote
4answers
61 views

C: Incompatible type on dynamic array of pointers of structure

I need help to declare a dynamic array of pointers. A read some articles and similar questions about it and I try to do it for my project but still frozen. What I'm trying to do: typedef struct ...
1
vote
4answers
115 views

Finding maximum values of rests of array

For example: array[] = {3, 9, 10, **12**,1,4,**7**,2,**6**,***5***} First, I need maximum value=12 then I need maximum value among the rest of array (1,4,7,2,6,5), so value=7, then maxiumum value ...
0
votes
1answer
25 views

Creating a Dynamic Array and returning array from with-in a function

I'm trying to write a function that selects contents from a database. The problem I have is a lack of understanding of arrays and returning variables from functions. I've written the function but ...
2
votes
3answers
155 views

ReDim Preserve to a Multi-Dimensional Array in Visual Basic 6

I'm using VB6 and I need to do a ReDim Preserve to a Multi-Dimensional Array: Dim n, m As Integer n = 1 m = 0 Dim arrCity() As String ReDim arrCity(n, m) n = n + 1 m = m + ...
0
votes
0answers
28 views

Oracle 11g PL/SQL In a loop filling record_group array containing BLOB is very slow

I have a PL/SQL code which parses XML data and fills up an array of record group type. Around 700000 records are extracted form the XML data and filled in the below array is filled. Below is a rough ...
2
votes
2answers
65 views

Dynamic array of linked lists in C

Basically I have to store words in linked list with each character having its own node. I get really confused with nested structures. How do I go to the next node? I know i'm doing this completely ...
0
votes
0answers
11 views

storing info in dynamic array? using id# as variable name

This probably seems pretty simple but here goes. I'm working on simple tracking of parts for a product. each product has a list of parts and quantities to build it. there are also options and ...
1
vote
4answers
62 views

Multi-dimensional dynamic arrays in classes in C++

I am a relative beginner to C++. I am working on a model related to forecasting property financials, and I am having a few issues getting my data structures setup. A bit of background - the specific ...
2
votes
1answer
65 views

dynamic-array push function- how does it work?

i know this is a large chunk of code, but im having an issue that hopefully someone can help with... im trying to build an templated expandable array class and use it to build an array of pointers to ...
1
vote
1answer
229 views

Excel: Runtime Error '1004' assigning VBA Array to Range without prior call to Worksheet.Activate

I generate a large matrix of doubles in a 2d VBA Dynamic Array. When I attempt to assign the Array to a Excel Range object, I receive the following error: Runtime Error '1004': Application-defined ...
0
votes
0answers
92 views

VBA pass an array of strings to a C/C++ dll

I am trying to call a function in a C .dll file (that I didn't write and is proprietary). The function declaration is something like int theirFunction(char **arrayOfNames); In Excel VBA, I would ...
2
votes
3answers
145 views

Pointer-to-pointer dynamic two-dimensional array

First timer on this website, so here goes.. I'm a newbie to C++ and I'm currently working through the book "Data structures using C++ 2nd ed, of D.S. Malik". In the book Malik offers two ways of ...
0
votes
1answer
64 views

C: Dynamic memory allocation - error of output

I'm trying to write a simple program that takes specific input, dynamically allocates it, outputs it and frees. The thing is it does not output it properly. The input's style is the following: The ...
2
votes
2answers
58 views

Remove buttons from dynamic array

Before I generate buttons in my program, it's supposed to clear them using: for (int i = 0; i < buttons.Length; i++) this.Controls.Remove(buttons[i]); However all the buttons from the ...
0
votes
2answers
45 views

Printing a dynamic array after increasing its size

I'm currently making a code on the MU game using dynamic arrays, and I've got a problem with printing a sequence. Rule: If the first character is denoted by the character M, and the rest of the ...
2
votes
5answers
153 views

C++ character array holding integer values

Im trying to create a dynamic char array which will contain numbers then change these to either a X or 0, Im creating a tic tac toe game which creates a grid to a specific number you want, the array ...
2
votes
4answers
312 views

Range-based for loop on a dynamic array?

There is a range-based for loop with the syntax: for(auto& i : array) It works with constant arrays but not with pointer based dynamic ones, like int *array = new int[size]; for(auto& i : ...
2
votes
1answer
94 views

What's the right way to make a stack (or other dynamically resizable vector-like thing) in Rust?

Google turns up many links on old methods that have now been removed from the language, but I can't find a reference on what to do for Rust 0.6. I've just implemented a linked list, which I could ...
2
votes
2answers
83 views

realloc: invalid next size, detected by glibc

My code: int args_size = 5; char** args; args = (char**) malloc(sizeof(char*) * args_size); // ... args = (char**) realloc(args, sizeof(char*) * (args_size += 5)); I want to increase the size ...
0
votes
2answers
102 views

c++ How do I use a dynamic array of pointers?

Ok, I'm trying to get my head around pointers but once I start using something like class **c i get lost. Say I had struct POINT{ int x, y, z; }; struct POLYGON{ POINT **vertices; int size; }; ...
1
vote
3answers
131 views

Create a fixed size std::vector and write to the elements

In C++ I wish to allocate a fixed-size (but size determined at runtime) std::vector then write to the elements in this vector. This is the code I am using: int b = 30; const std::vector<int> ...
1
vote
2answers
58 views

Merging entries of two arrays as the even and odd entries of another array.

I've got a function thats able to produces 2 arrays, one when the index 'i' is even and one when the index 'i' is odd, so I end up with two arrays. The even 'i' array is called W_e and made of N ...
0
votes
2answers
43 views

Counting properties in an array

I am trying to count properties in a dynamically generated array. The array programs is created inside an object as follows: state_list.push({name: state, undergrad: 0, grad: 0, total: 0, programs: ...
0
votes
2answers
99 views

Access violation writing location in C++

First time writing here. I've seen several other questions like mine, but couldn't solve my problem. I have 4 classes : Song, Playlist, Album, Artist. Playlist consist of array of songs. Album ...
0
votes
5answers
188 views

How to resize array of struct elements

I'm writing a program, where I have one class, inside that class ( or outside, hope it doesn't matter ) I have struct. In that class I need to make an array of struct elements ( I know I can use ...
1
vote
3answers
60 views

How do I echo this array in a for loop?

I have some arrays that have each 4 values in them, named: $myarray_row0 $myarray_row1 $myarray_row2 So normally I can use this echo statement to get at the values in the first array: echo 'My ...
1
vote
2answers
399 views

Arrays in Excel VBA macro

I have a folder with many files, out of which I need to: open the files for this week, store them in an array, pass them to a sub, and loop through them for getting summary information. I am able to ...
1
vote
3answers
82 views

trouble deleting a dynamic linked list?

struct Package_Node { int bar_code; float package_weight; Package_Node *next_packaged; }; struct Key_Node { int key; Package_Node ...
0
votes
1answer
91 views

assigning strtof value into 2D array in C

I'm trying to parse a CSV file into a 2D array in C. I want to make a matrix wit the structure : typedef struct { int row; int col; float **arr; int numElements; } Matrix; The ...
3
votes
1answer
56 views

creating a dynamic array?

keyMain= new Key_Node[X]; for(int i=0; i<X; i++) { keyMain[i].key=i; cout << keyMain[i].key<<endl; keyMain[i].next_package=NULL; } Am I doing ...
0
votes
0answers
193 views

excel vba range to dynamic array assignment

Usually I store the sheet names in variables, so I did not realize the following issue until I created the below test code. The test sheet contains dummy data from A1 to E2. I found an issue while I ...
-1
votes
2answers
170 views

Copy constructor and operator= for a dynamic array inside a class

I need some help to implement a copy constructor and a operator= for my dynamic array inside my class. Im not allowed to use a vector at this point Here is mye code: Class: class Matrix{ ...
1
vote
2answers
82 views

Is it possible to create an array on the heap at run-time, and then allocate more space whenever needed?

Lets say I do char *a; a = new char[4]; Now, is it possible to extend the size of the array further? Say I want to keep any values I put inside a[0] to a[3] but now I want more space for a[4] and ...
0
votes
3answers
73 views

Overload cout operator for a dynamic array in a class

I am trying to overload the operator << for cout for a dynamic array in a class. My class and member functions are as follows: class Matrix{ private: int rows; int columns; double* ...
4
votes
3answers
129 views

Dynamic arrays inside a class

I am doing the following exercise at the moment: A generic Matrix class (15 pt) a) Create a class called Matrix, it should contain storage for M*N numbers of type double. Just like earlier, ...
1
vote
1answer
76 views

Error in double pointer to array parameter

int main (void) { int** arr = new int*[4]; for (int i = 0; i < 4; i++) arr[i] = new int[4] {1, 0, 0, 1}; const int* p = &(arr[0][0]); TFigure* test = new TFigure(arr, 4, 4); ...
1
vote
3answers
162 views

Creating a dynamic 2D array

I need to have a 2D array of double. Its width is around 900. Its height as well (the same width value). Dealing with two loops (one for the width and one for the height), I really need to get access ...
0
votes
2answers
102 views

php array to radio button

i want to create a radio button labeled with the values of my array. all i can do is to print them all. what can i use to access my array (dynamic-array) besides indexes since i will not know the ...
2
votes
2answers
183 views

Using fscanf to input data into a dynamic struct pointer array?

I have an assignment and have run into somewhat of a snag. The following code is supposed to take input from a file, read it into a struct that I have defined, and do so without any limit to the ...
0
votes
2answers
52 views

Creating a nested Javascript object

I apparently cannot think abstractly enough to do this... but I'd like to create a Javascript object out of an array that uses the array values as property names, but they should be nested objects ...
0
votes
1answer
54 views

stackInit function is seg faulting and I'm not understanding why

I'm new to using structures and our current assignment we have to read in a string for example: "{{asdfd<>}}()()()(((())))" and for every time we see a "{,[, (, <" we have to push it onto a ...
0
votes
2answers
195 views

How to store File Array values into another File array

I'm trying to create a program that will search through a File Array and store the unique file names into a new File Array and return that new Array, only putting duplicates in once (if there are ...
2
votes
3answers
91 views

How can I send a PHP variable array to a MySQL database?

So I have a variable array created from scraping a plaintext data string from a webpage (using Simple HTML DOM Parser class). This variable is the formatted to make it more concise and useful. I ...
6
votes
3answers
389 views

Do I need to finalize array of records in Delphi?

In my application I have the following record: TTransaction = record Alias: string Description: string Creation: TDateTime Count: Integer end; and I'm using this record in this array: ...
0
votes
1answer
93 views

Heap corruption error when deleting array

I am attempting to read in a text file containing a list of random numbers and ordering them using mergesort to display. The numbers are read in to a dynamic array. Unfortunately, a heap corruption ...
3
votes
5answers
73 views

De-allcoating dynamically allocated multidimensional arrays.

So, I have this code, and I am trying to deallocate the array ppint at the end. I have tried using leaks with Xcode to figure out if it is working, but I don't quite understand it. Will doing this ...
0
votes
0answers
95 views

How to set value to a dynamic array using the rtti? [duplicate]

I'm trying this way, however the size remains 0 v := _RttiFld.GetValue(obj); P := v.GetReferenceToRawData; idx := 2; //to test DynArraySetLength(p,v.TypeInfo,1,@idx); ...
0
votes
2answers
49 views

Trouble Creating Dynamic Integer Array

I'm sure it's something small but I keep getting an initialize error about how I keep trying to use it before it's initialized. #include <iostream> using namespace std; int main() { int* ...

1 2 3 4 5 6