Tagged Questions
The contiguous tag has no wiki summary.
7
votes
3answers
298 views
Mark non-contiguous date ranges
Background (Input)
The Global Historical Climatology Network has flagged invalid or erroneous data in its collection of weather measurements. After removing these elements, there are swaths of data ...
6
votes
2answers
194 views
Is the memory in std::array contiguous?
Is the memory in std::Array contiguous? Is the following valid/good practice?
std::array<type1,Num> arr = //initialize value
type1 * ptr = &arr[0];
Could I then pass ptr to functions ...
3
votes
4answers
165 views
How and when is the memory of a global or static array allocated?
When defining a global or static array in c++ its memory is not immediately reserved at the start of the programme but only once we write to the array. What I found surprising is, if we only write to ...
2
votes
2answers
91 views
Java: Contiguous region in a multi-dimensional array, used to implement a Latin Square
I am writing a program that reads in a potential Latin Square and tells whether or not it is a valid latin square or not. Now I am trying tell if the region selected is a contiguous one or not.
The ...
1
vote
3answers
141 views
Are C++ Vectors always contiguous? [closed]
Possible Duplicate:
Are std::vector elements guaranteed to be contiguous?
I have come across a technique in which people use a vector in C++ to receive or send data for MPI operations as it ...
0
votes
1answer
69 views
How to allocate 8kb memory for a character array and get the starting and ending address of it?
i need to allocate 8 kb to an array and need to get the starting and ending address of the array. then i need to check those virtual memory address are aligned contiguously or not in the actual ...
0
votes
6answers
396 views
std::vector and contiguous memory of multidimensional arrays
I have encountered an interesting problem in a current project. I know that the standard does not force std::vector to allocate contiguous memory blocks, but all implementations obey this ...
0
votes
2answers
137 views
Identify consecutive repetition in two-dimensional array [C]
I have a 2-dimensional array that looks like this:
1 1 0 0 1
1 0 1 1 0
0 0 1 1 0
1 1 0 1 1
0 0 1 1 1
I'm trying to figure out a way to identify the longest contiguous chain of 1's going either ...