Tagged Questions
The dynamic-arrays tag has no wiki summary.
13
votes
2answers
317 views
Why doesn't C++ support dynamic arrays on the stack? [closed]
In C99 this was legal:
void f(size_t sz) {
char arr[sz];
// ...
}
However, this - dynamically sized stack arrays - has been dropped in C++, and not seeing a return in C++11.
AFAIK C++ was ...
11
votes
2answers
6k views
How to implement dynamic arrays in Delphi
I originally had an array[1..1000] that was defined as a global variable.
But now I need that to be n, not 1000 and I don't find out n until later.
I know what n is before I fill the array up but I ...
8
votes
4answers
226 views
Why is it undefined behavior to delete[] an array of derived objects via a base pointer?
I found the following snippet in the C++03 Standard under 5.3.5 [expr.delete] p3:
In the first alternative (delete object), if the static type of the object to be deleted is different from its ...
8
votes
7answers
3k views
TStringList, Dynamic Array or Linked List in Delphi?
I have a choice.
I have a number of already ordered strings that I need to store and access. It looks like I can choose between using:
A TStringList
A Dynamic Array of strings, and
A Linked List of ...
8
votes
1answer
1k views
How to “watch” a C++ dynamic array using gdb?
Consider the following example:
int size = 10, *kk = new int[size];
for (int i = 0; i < size; i++) {
kk[i] = i;
}
delete [] kk;
How can I add a watch for the whole array? I can add a watch ...
7
votes
3answers
254 views
How to get priorly-unkown array as the output of a function in Fortran
In Python:
def select(x):
y = []
for e in x:
if e!=0:
y.append(e)
return y
that works as:
x = [1,0,2,0,0,3]
select(x)
[1,2,3]
to be translated into Fortran:
...
7
votes
3answers
623 views
Is a dynamic array of Char allowed when the parameter type is open array of Char?
I was looking at http://stackoverflow.com/q/3780235/71200 and started experimenting. What I discovered is rather interesting.
procedure Clear(AArray: array of Integer);
var
I: Integer;
begin
for ...
6
votes
3answers
204 views
Linked list vs. dynamic array for implementing a stack
I've started reviewing data structures and algorithms before my final year of school starts to make sure I'm on top of everything. One review problem said "Implement a stack using a linked list or ...
6
votes
3answers
163 views
No array allocated using new can have an initializer?
In the book I am reading at the moment (C++ Complete Reference from Herbert Schildt), it says that no array allocated using new can have an initializer.
Can't I initialize a dynamically allocated ...
6
votes
7answers
659 views
3D array C++ using int [] operator
I'm new to C/C++ and I've been cracking my head but still got no idea how to make an "structure" like this
It's supposed to be a 3D dynamic array using pointers.
I started like this, but got stuck ...
6
votes
4answers
3k views
How to initialize a dynamic array in java?
If I have a class that needs to return an array of strings of variable dimension (and that dimension could only be determined upon running some method of the class), how do I declare the dynamic array ...
6
votes
4answers
488 views
Delphi SetLength Custom Indexing
In Delphi, it is possible to create an array of the type
var
Arr: array[2..N] of MyType;
which is an array of N - 1 elements indexed from 2 to N.
If we instead declare a dynamic array
var
...
5
votes
4answers
96 views
The array is static, but the array size isn't know until runtime. How is this possible?
This has been troubling me for a while. It goes to the heart of my (lack of) understanding of the difference between static and dynamic memory allocation. The following array is an ordinary static ...
5
votes
3answers
76 views
Two-Dimensional Array using Templates
I am trying to implement a dynamic array:
template <typename Item>
class Array {
private:
Item *_array;
int _size;
public:
Array();
Array(int size);
Item& operator[](int ...
5
votes
2answers
623 views
Does std::vector use the assignment operator of its value type to push_back elements?
If so, why? Why doesn't it use the copy constructor of the value type?
I get the following error:
/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/bits/vector.tcc: In member functio
n ...
5
votes
2answers
375 views
Can I resize a Delphi array without losing its previous contents?
I have a dynamic array. But initially I am not knowing the length of the array. Can I do like first I set the length of it as 1 and then increase length as I needed without lost of previously stored ...
5
votes
4answers
278 views
Can I use the [] operator in C++ to create virtual arrays
I have a large code base, originally C ported to C++ many years ago, that is operating on a number of large arrays of spatial data. These arrays contain structs representing point and triangle ...
5
votes
6answers
587 views
What is the ideal growth rate for a dynamically allocated array?
C++ has std::vector and Java has ArrayList, and many other languages have their own form of dynamically allocated array. When a dynamic array runs out of space, it gets reallocated into a larger area ...
4
votes
1answer
301 views
How to use the (the Boost Multidimensional Array Library) to construct a dynamic two-dimentional array?
I need help in using the boost multidimensional array. I have to construct a two dimensional array where: (0 <= j <= 1) and (i) grows dynamically according to:
long boostArray[i][j];
Thus, ...
4
votes
2answers
416 views
C++ vector copy elements?
I would like to use a dynamic array in C++ (something like an ArrayList or a Vector in Java.)
In this example are the t1, t2... objects are copied or only its address is added to the vector?
Do I need ...
4
votes
5answers
241 views
4
votes
4answers
557 views
Why does C++ allow variable length arrays that aren't dynamically allocated?
I'm relatively new to C++, and from the beginning it's been drilled into me that you can't do something like
int x;
cin >> x;
int array[x];
Instead, you must use dynamic memory. However, I ...
3
votes
3answers
97 views
why does my pointer output a string and not a memory address? c++
I'm working on a string class that employs pointers and I'm just having some difficulty in understanding how my print function works here. Specifically, why does cout << pString output the ...
3
votes
1answer
165 views
Why this code generates an exception?
I wrote some code today that will list all the sections in a PE file...the code works but at the end it gives an exception :Invalid pointer operation... and i don't know why...could someone please ...
3
votes
7answers
103 views
Is there a way to distinguish between new's and new[]'s return value?
Consider this code:
int *p = new int;
cout << sizeof(*p);
delete p;
As expected the result is 4. Now, consider this other code:
int *p = new int[10];
cout << sizeof(*p);
delete[] p;
...
3
votes
7answers
982 views
How can I dynamically add items to a Java array?
In PHP, you can dynamically add elements to arrays by the following:
$x = new Array();
$x[] = 1;
$x[] = 2;
After this, $x would be an array like this: {1,2}.
Is there a way to do something similar ...
3
votes
5answers
792 views
C dynamically growing array
I have a program that reads a "raw" list of in-game entities, and I intend to make an array holding an index number (int) of an indeterminate number of entities, for processing various things. I would ...
3
votes
2answers
475 views
Is a dynamic array automatically deallocated when it goes out of scope?
in this example
procedure foobar;
var tab:array of integer;
begin
setlength(tab,10);
end;
is the array destroyed or the memory is leaking?
3
votes
2answers
226 views
Accessing the _CopyArray procedure
Is there a way to access (and call) procedures like _CopyArray that are defined in the interface in the unit System?
NB: I am trying to create a routine that makes a deep clone of any dynamic array, ...
3
votes
3answers
301 views
What bookkeeping data does a Delphi dynamic array contain?
Here's a simple program to check memory allocation. Checking before and after values with Task Manager suggests that each dynamic array takes up 20 bytes of memory at size = 1. The element size is ...
2
votes
3answers
45 views
How to initalize pointer to pointer with premade data?
I have a pointer to a pointer, since I can't pass dynamic arrays to functions. However, if I want to initialize that pointer-to-pointer with premade data, how can I set it since {a,b,c} notation for ...
2
votes
5answers
70 views
Dynamic Array of char Pointer
I am trying to define a dynamic array containing char pointers that point to strings. The string can be of any length, so i used char pointers. I want to dynamically resize the array each time I need ...
2
votes
4answers
151 views
in Classic ASP, How to get if a dynamic array has elements inside?
If I declare a dynamic sized array like this
Dim myArray()
Then how I can get in the code if this array is empty or it contains elements?
I tried with IsArray(myArray) function that give me ...
2
votes
2answers
143 views
Inserting unknown number of elements into dynamic array in linear time
(This question is inspired by deque::insert() at index?, I was surprised that it wasn't covered in my algorithm lecture and that I also didn't find it mentioned in another question here and even not ...
2
votes
4answers
65 views
Why does calling 'delete' in a specific way on a dynamic array not work?
I'm wondering why this code doesn't work:
void KeyValueList::Release()
{
//(m_ppKeyValueList is a dynamic array of pointers to objects on the heap)
if (m_ppKeyValueList) {
for (int i = 0; ...
2
votes
2answers
93 views
Dynamic Array Output Problem
I am working on a homework assignment where I had to convert all of the static arrays in a program into dynamic arrays using pointers. I am pretty sure I am understanding the concept, I have made the ...
2
votes
3answers
83 views
Counte elements (size) of array of objects
I am doing this learning/practicing with arrays of objects and array of pointers to objects and I'm very confused about how to get dynamic arrays sizes.
I've got this:
private:
Client ** ...
2
votes
5answers
250 views
Why must C++ constructor use dynamic allocation for array?
In my course notes these two examples are given. Apparently the first one is not allowed, is there a technical reason why I can't allocate on stack? Or is this the C++ standard?
// Constructor ...
2
votes
3answers
333 views
Initialize an array (string or any other data type) inside a Struct
I'm looking to do this in C#.
public struct Structure1
{ string string1 ; //Can be set dynamically
public string[] stringArr; //Needs to be set dynamically
}
In general, how should one ...
2
votes
6answers
174 views
Why are dynamic arrays needed in C++?
I don't understand the need for dynamic arrays. From what I understand so far, dynamic arrays are needed because one cannot always tell what size of array will be needed at runtime.
But surely one ...
2
votes
4answers
146 views
how to generate a bidimensional array with different “branch” lengths very fast
I am a Delphi programmer.
In a program I have to generate bidimensional arrays with different "branch" lengths.
They are very big and the operation takes a few seconds (annoying).
For example:
var ...
2
votes
3answers
180 views
PHP Array combining 2 or more values together
I am curious know if and how it is possible to combine 2 values of an array together instead of overriding the other. I will show you an example:
I have a form that is mapping fields to a database ...
2
votes
1answer
38 views
2D Array images swapping
i have a problem of how to swap images isnide my 3 * 3 array, for example:
mImage image1 image2
image3 image4 image5
image6 image7 image8
mImage is the one i would like to swap with the rest, ...
2
votes
1answer
484 views
Dynamic array allocation of a record in Ada
I am trying to dynamically allocate a large array in Ada (well, an array of an array).
For instance, I'm able to dynamically allocate an object like so:
type Object;
type ObjPtr is access Object;
OP ...
2
votes
4answers
660 views
Initialization of 2D array with dynamic number of rows and fixed number of columns. C++
I'm having problem with creating my 2D dynamic array in C++. I want it to have dynamic number (e.g. numR) of "rows" and fixed (e.g. 2) number of "columns".
I tried doing it like this:
const numC = ...
2
votes
7answers
341 views
Declaring a huge dynamic array with tiny cells [C++]
I have this project I'm working on. The following conditions apply
In this project I need to create one huge array (hopefully I will be able to create one as big as ~7.13e+17, but this target is ...
2
votes
2answers
3k views
Android Dynamic Array
I am parsing an XML file through Android Pull Parser technique. First, have a look at the below XML file:
<childs>
<students>
<name> hello </name>
...
2
votes
3answers
200 views
Associative array with mixed (numerical and string) indices?
How would one implement a dynamic associative array that could take any number of mixed indices (integers, strings, or both)?
I aim to simulate structures by providing, for example, ...
2
votes
3answers
230 views
How to define a static array without a contant size in a constructor of a class? (C++)
I have a class defined as:
class Obj {
public:
int width, height;
Obj(int w, int h);
}
and I need it to contain a static array like so:
int presc[width][height];
however, I cannot define ...
2
votes
7answers
976 views
C# Increasing an array by one element at the end
In my program I have a bunch of growing arrays where a new element is grown one by one to the end of the array. I identified Lists to be a speed bottleneck in a critical part of my program due to ...