Tagged Questions

A stack is a last in, first out (LIFO) abstract data type and data structure. Perhaps the most common use of stacks is to store subroutine arguments and return addresses.

learn more… | top users | synonyms

513
votes
13answers
81k views

What and where are the stack and heap

Programming language books usually explain that value types are created on the stack, and reference types created on the heap, without really explaining what these two things are. With my only ...
97
votes
4answers
42k views

Why Java Vector class is considered obsolete or deprecated?

Why Java Vector is considered a legacy class, obsolete or deprecated? Its use isn't valid when working with concurrency? And if I don't want to manually synchronize objects and just want to use a ...
76
votes
8answers
2k views

In C, do braces act as a stack frame?

If I create a variable within a new set of curly braces, is that variable popped off the stack on the closing brace, or does it hang out until the end of the function? For example: void foo() { ...
59
votes
14answers
12k views

Why is alloca not considered good practice?

Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically ...
39
votes
23answers
4k views

Why not use pointers for everything in C++?

Suppose that I define some class: class Pixel { public: Pixel(){ x=0; y=0;}; int x; int y; } Then write some code using it. Why would I do the following? Pixel p; p.x = 2; ...
36
votes
10answers
1k views

Why are stack overflows still a problem?

This question is mystifying me for years and considering this site's name, this is the place to ask. Why do we, programmers, still have this StackOverflow problem? Why in every major language does ...
33
votes
5answers
23k views

How to implement a queue using two stacks?

Suppose we have two stacks and no other temporary variable. Is to possible to "construct" a queue data structure using only the two stacks?
31
votes
10answers
8k views

Proper stack and heap usage in C++?

I've been programming for a while but It's been mostly Java and C#. I've never actually had to manage memory on my own. I recently began programming in C++ and I'm a little confused as to when I ...
30
votes
16answers
2k views

Why is inlining considered faster than a function call?

Now, I know it's because there's not the overhead of calling a function, but is the overhead of calling a function really that heavy (and worth the bloat of having it inlined) ? From what I can ...
28
votes
7answers
5k views

What is stack unwinding?

What is stack unwinding? Searched through but couldn't find enlightening answer! Thanks in advance.
26
votes
14answers
2k views

When does ++ not produce the same results as +1?

The following two C# code snippets produce different results (assuming the variable level is used both before and after the recursive call). Why? public DoStuff(int level) { // ... ...
25
votes
8answers
19k views

Stack,Static and Heap in C++

I've searched, but I've not understood very well these three concepts. When do I have to use dynamic allocation (in the heap) and what's its real advantage? What are the problems of static and stack? ...
23
votes
10answers
20k views

Implement Stack using Two Queues

A similiar question was asked earlier there, but the question here is the reverse of it, using two queues as a stack. The question... Given two queues with their standard operations (enqueue, ...
22
votes
6answers
7k views

Do threads share the heap?

As far as I know each thread gets a distinct stack when the thread is created by the OS. I wonder if each thread has a heap distinct to itself also?
22
votes
10answers
3k views

Why does the Mac ABI require 16-byte stack alignment for x86-32?

I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some ...
21
votes
6answers
5k views

Arrays, heap and stack and value types

int[] myIntegers; myIntegers = new int[100]; In the above code, is new int[100] generating the array on the heap? From what I've read on CLR via c#, the answer is yes. But what I can't understand, ...
21
votes
6answers
2k views

What is a stack overflow?

What is a stack overflow error? What type of programs/programming languages is it likely to occur in? Is it unlikely to occur in web application code?
20
votes
11answers
11k views

How does the stack work in assembly language?

I'm currently trying to understand how the stack works, so I've decided teach myself some assembly language, I'm using this book: http://savannah.nongnu.org/projects/pgubook/ I'm using Gas and ...
19
votes
2answers
267 views

C# & .NET: stackalloc

I have a few questions about the functionality of the stackalloc operator. How does it actually allocate? I thought it does something like: void* stackalloc(int sizeInBytes) { void* p = ...
19
votes
8answers
2k views

How does a stackless language work?

I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?
18
votes
3answers
322 views

Why use a stack-oriented language?

I recently took a look at Factor, and the idea of having a language based around the concept of a stack is very interesting. (This was my first encounter with a stack-oriented language.) However, I ...
18
votes
7answers
2k views

Why do stacks typically grow downwards?

I know that in the architectures I'm personally familiar with (x86, 6502, etc), the stack typically grows downwards (i.e. every item pushed onto the stack results in a decremented SP, not an ...
18
votes
8answers
11k views

Stack overflows from deep recursion in Java?

After some experience with functional languages, I'm starting to use recursion more in Java - But the language seems to have a relatively shallow call stack of about 1000. Is there a way to make the ...
17
votes
10answers
4k views

Does stack grow upward or downward?

I have this piece of code in c: int q=10; int s=5; int a[3]; printf("Address of a: %d\n",(int)a); printf("Address of a[1]: %d\n",(int)&a[1]); printf("Address of a[2]: ...
17
votes
5answers
4k views

What is the direction of stack growth in most modern systems?

I am preparing some training materials in C and I want my examples to fit the typical stack model. What direction does a C stack grow in Linux, Windows, Mac OSX (PPC and x86), Solaris, and most ...
16
votes
1answer
742 views

Stack with find-min/find-max more efficient than O(n)?

I am interested in creating a Java data structure similar to a stack that supports the following operations as efficiently as possible: Push, which adds a new element atop the stack, Pop, which ...
15
votes
8answers
566 views

Generalizing the find-min/find-max stack to arbitrary order statistics?

In this earlier question, the OP asked for a data structure similar to a stack supporting the following operations in O(1) time each: Push, which adds a new element atop the stack, Pop, which ...
15
votes
6answers
18k views

Stack smashing detected

I am executing my a.out file .After execution the program runs for some time then exits with the message: ** stack smashing detected : ./a.out terminated ======= Backtrace: ========= ...
15
votes
4answers
2k views

What Happens When Stack and Heap Collide

I am curious to know what happens when the stack and the heap collide. If anybody has encountered this, please could they explain the scenario. Thanks in advance.
15
votes
8answers
5k views

Global memory management in C++ in stack or heap?

If I declare a data structure globally in a C++ application , does it consume stack memory or heap memory ? For eg struct AAA { .../.../. ../../.. }arr[59652323];
15
votes
5answers
7k views

design a stack such that getMinimum( ) should be O(1)

This is one of an interview question. You need to design a stack which holds an integer value such that getMinimum() function should return the minimum element in the stack. For example: consider the ...
15
votes
4answers
5k views

How to determine maximum stack usage?

What methods are available for determining the optimum stack size for embedded/memory constrained system? If it's too big then memory is wasted that could be used elsewhere. However, if it is too ...
14
votes
1answer
139 views

Confused: instance creation of c# class in c++

Assume someClass is a class defined in C# with some method int doSomething(void), and for simplicity, providing a constructor taking no arguments. Then, in C#, instances have to be created on the gc ...
14
votes
4answers
242 views

can custom C++ classes replicate the performance of inbuilt types?

I am trying to create a C++ class that behaves exactly like the inbuilt int type with one exception: everywhere that operator* (or operator*=) is called, addition is called instead. At first, the ...
14
votes
5answers
2k views

How does a virtual machine work?

I've been looking into how programming languages work, and some of them have a so-called virtual machines. I understand that this is some form of emulation of the programming language within another ...
14
votes
5answers
1k views

Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?

Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario: You have a workflow engine ...
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 ...
13
votes
11answers
2k views

Can a C++ class determine whether it's on the stack or heap?

I have class Foo { .... } Is there a way for Foo to be able to separate out: function blah() { Foo foo; // on the stack } and function blah() { Foo foo* = new Foo(); // on the heap } I ...
13
votes
10answers
3k views

Stack Size Estimation

In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct sizing of the stack ...
13
votes
9answers
4k views

How to detect possible / potential stack overflow problems in a c / c++ program?

Is there a standard way to see how much stack space your app has and what the highest watermark for stack usage is during a run? Also in the dreaded case of actual overflow what happens? Does it ...
12
votes
2answers
557 views

How do Haskell compilers decide whether to allocate on the heap or the stack?

Haskell doesn't feature explicit memory management, and all objects are passed by value, so there's no obvious reference counting or garbage collection either. How does a Haskell compiler typically ...
12
votes
2answers
556 views

Why are Stack<T> and Queue<T> implemented with an array?

I'm reading C# 4.0 in a Nutshell by the Albahari brothers and I came across this: Stacks are implemented internally with an array that's resized as required, as with Queue and List. (pg 288, ...
12
votes
6answers
2k views

Stack allocation, padding, and alignment

I've been trying to gain a deeper understanding of how compilers generate machine code, and more specifically how GCC deals with the stack. In doing so I've been writing simple C programs, compiling ...
11
votes
4answers
727 views

Why don't stacks grow upwards (for security)?

This is related to the question 'Why do stacks typically grow downwards?', but more from a security point of view. I'm generally referring to x86. It strikes me as odd that the stack would grow ...
11
votes
5answers
5k views

Heap versus Stack allocation implications (.NET)

From a SO answer about Heap and Stack, it raised me a question: Why it is important to know where the variables are allocated? At another answer someone pointed that the stack is faster. Is this the ...
10
votes
3answers
316 views

How does one implement a “stackless” interpreted language?

I am making my own Lisp-like interpreted language, and I want to do tail call optimization. I want to free my interpreter from the C stack so I can manage my own jumps from function to function and my ...
10
votes
4answers
860 views

Java Simon Says

I currently have the GUI made for a simon says game, the only problem I'm having is implementing the game logic (my current code will generate a sequence and display user input, but won't save the ...
10
votes
2answers
249 views

Why do Queue(T) and Stack(T) not implement ICollection(T)?

Before I even ask, let me get the obvious answer out of the way: The ICollection<T> interface includes a Remove method to remove an arbitrary element, which Queue<T> and Stack<T> ...
10
votes
5answers
2k views

Memory allocation: Stack vs Heap?

I am getting confuse with memory allocation basics between Stack vs Heap, as per the standard definition (things which everybody says), all value types will get allocated onto a Stack and reference ...
10
votes
2answers
5k views

Clear the entire history stack and start a new activity on Android

Is it possible to start an activity on the stack, clearing the entire history before it? The situation I have an activity stack that either goes A->B->C or B->C (screen A selects the users token, ...

1 2 3 4 5 29