The allocation tag has no wiki summary.
0
votes
0answers
76 views
Development of algorithmical concept for scheduling and allocation problem
I have to solve a problem in the field of operations research. I want to gather some general approaches to evaluate them to pick the most promising to design a problem-related program.
Problem ...
0
votes
2answers
207 views
What is a good algorithm for priority allocation of work duties?
I am currently doing a project (in PHP) that has the following requirements:
There is a list of people, sorted in a certain priority. Work should be allocated to them by this priority. e.g. If the ...
2
votes
1answer
353 views
How are new[] and malloc implemented in Windows?
So when you call malloc or new [] from your C/C++ application, how does the CRT translate it into Windows API calls?
1
vote
3answers
168 views
Allocation problem identification
I have a matrix. I have a list of people who have to occupy n1,n2,n3 etc cells, different number of cells in different rows. I have to place the people in the cells. Occupying the same cell across ...
1
vote
1answer
390 views
In c/c++, are block-scope variables stacked only if the block is executed?
Suppose this:
void func()
{
...
if( blah )
{
int x;
}
...
}
Is the space for x reserved on the stack immediately when func is entered, or only if the block is actually executed?
Or is it ...
3
votes
1answer
160 views
Heaps: Why is there a tradeoff between amount of space occupied (fragmentation), and speed at which operations are carried out?
Apparently, the two major judging criteria of the effectiveness of heaps are (1) how much we can minimize the amount of space it takes up and (2) how fast operations on the heap can be carried out, ...