Javatpoint Logo
Javatpoint Logo

Stack vs Heap

Before understanding the differences between the Stack and Heap data structure, we should know about the stack and heap data structure separately.

What is Stack?

A Stack is a data structure that is used for organizing the data. Stack is similar to the stack a way organizing the objects in the real world. Some examples of stack of real world are stack of dinner plates, mathematical puzzle known as Tower of Hanoi containing three rods having multiple discs and stack of tennis balls. Stack is a collection with a property that an item or an object must be removed from one end known as the top of the stack.

It cannot be considered as the property rather it is considered as the constraint or restriction applied to the stack. In other words, we can say that only top of the stack is accessible and any item can be removed or inserted from the top of the stack. It follows LIFO (Last In First Out) principle in which recently added element must be removed from the stack first.

A stack is a list or a collection with a restriction that the insertion and deletion will take place from one end known as the top of the stack.

Operation

The following are the two operations available with a stack ADT:

  • Push: The process of inserting an element in a stack is known as push operation. The posh operation can be written as:
    Push(x): It inserts an element x into the stack.
  • Pop: The process of deleting an element from the stack is known as a pop operation. The pop operation can be represented as:
    Pop(): It removes the most recent element from the stack.

Representation of stack

Stack is shown below:

Stack vs Heap

We can observe in the above figure that stack looks like a container which is opened from one side. It can be represented logically as a three-sided figure as a container open from one side. The above representation is an empty stack and let's assume that stack is 's'. It is a stack of integers. Now we will perform push and pop operations on the stack. Suppose we want to insert 2 element in the stack. After push operation, the stack would look like:

Stack vs Heap

Since there is only one element in the stack, so 2 element would be at the top of the stack. If we want to insert 1 element in the stack, then the stack would like:

Stack vs Heap

Since element 1 comes above the element 2, so element 1 would be considered the top of the stack. If we perform pop operation, then the topmost element, i.e., 1 would be removed from the stack as shown below:

Stack vs Heap

What is Heap?

Heap is also a data structure or memory used to store the global variables. By default, all the global variables are stored in the heap memory. It allows dynamic memory allocation. The heap memory is not managed by CPU. Heap data structure can be implemented either using arrays or trees.

It is a complete binary tree that satisfies the condition of the heap property where complete binary tree is a tree in which all the levels are completely filled except the last level. In the last level, all the nodes are far as left as possible.

Pointers and Dynamic memory

Here, we will see the architecture of memory. It is very crucial to know that how system manages the memory and accessible to us as programmers. The memory which is assigned to the program or application in a typical architecture is divided into four segments. One segment of the memory stores the instructions which are to be executed. Another segment of the memory stores the global or the static variables. The global variables are the variables which are declared outside the function and the lifetime is throughout the program. The third segment, i.e., stack is used to store all the function calls and the local variables. When any function is called then it occupies some space in the memory known as a stack memory.

Stack vs Heap

Let's understand the stack memory through an example.

In the above code, execution starts from the main() method. So main() method would be given a memory in the stack as shown below:

Stack vs Heap

When the sum() method is called, the control moves to the sum() function.

Stack vs Heap

The sum() method calls the square() method; therefore, the square method would be given a memory in the stack as shown below:

Stack vs Heap

Once the square() method return statement is executed, the control moves back to the sum() method and the square() method gets removed from the stack as shown below:

Stack vs Heap

When the return statement of the sum() method is executed, the control moves to the main() method and sum() method gets removed from the stack as shown below:

Stack vs Heap

In the main() method, printf() function is called so it gets memory in the stack as shown below:

Stack vs Heap

Once the execution of printf() statement is completed, the printf() and main() methods are removed from the stack memory as shown below:

Stack vs Heap

There are some limitations of using a stack memory. Suppose operating system reserves 1MB stack memory for the program. If program keeps calling the functions again then stack memory would not be sufficient and it leads to the stack overflow condition. The stack overflow causes a program to crash. So, we can say that the stack memory does not grow runtime.

Another limitation of stack is that the scope of the variable cannot be manipulated. The allocation and deallocation of memory onto the stack are set by the rule, i.e., when the function is called then it is pushed onto the top of the stack and when pop() operation is called then the element is removed from the top of the stack.

The third limitation of the stack is that if we define the large data type such as array and the size of the array is not defined at the compile time. We want to define the size of the array based on some parameters, and defining the size of the array at the runtime is not possible with the stack.

So, to allocate the large chunks of memory and keep the memory aside till the time we want, we can use a heap data structure. Unlike stack data structure, the size of the heap memory can vary and it is not fixed throughout the lifetime of the application. In heap memory, there is no set rule for the allocation and deallocation of memory. A programmer can itself manually handle the memory. The abstracted way for the programmer of looking at the heap as a large free of memory available to use and we can use it as per our needs.

Heap is also known as a dynamic memory and using heap, can be considered as the dynamic memory allocation. To use dynamic memory, we need to use some functions. In C language, we can use malloc() and calloc() to allocate the memory and free() function to deallocate the memory, whereas, in C++ language, we use new operator for the allocation and delete operator for the deallocation.

Let's understand the dynamic memory through an example.

Explanation of the above code.

First, we declared the 'a' variable and it gets allocated within the stack frame of the main() method in the stack as shown below:

Stack vs Heap

To allocate something in the heap memory, we need to use the malloc() function. We have used the malloc() function in the above code in which we pass the sizeof(int) defines that 4bytes of block is allocated in the heap memory. This function returns the void pointer that contains the starting address of the block. The 'p' is a pointer variable local to the function so it gets stored in the stack as shown below:

Stack vs Heap

Again, we have allocated new block of memory pointed by the 'p' variable, so 'p' does not hold the address of the previous block. The block having value 11 is an unnecessary consumption of memory. In heap, the memory is not automatically deallocated, we have to release the memory manually. So, in the above code, we have used the free(p) function in which we pass the 'p' to deallocate the memory pointed by 'p'.

Differences between Stack and Heap

Stack vs Heap
Stack Heap
Stack provides static memory allocation, i.e., it is used to store the temporary variables. Heap provides dynamic memory allocation. By default, all the global variables are stored in the heap.
It is a linear data structure means that elements are stored in the linear manner, i.e., one data after another. It is hierarchical data structure means that the elements are stored in the form of tree.
It is used to access the local variables. It is used to access the global variables by default.
The size of the stack memory is limited which is dependent on the OS. The size of the memory is not limited.
As it is a linear data structure, so data is stored in the contiguous blocks. As it is hierarchical data structure, so elements are stored in the random manner.
In stack, the allocation and deallocation are automatically managed. In heap, the memory is manually managed.
The implementation of stack can be done in three forms using array, linked list and dynamic memory. The implementation of heap can be done in two forms using arrays and trees.
The main issue that occurs with a stack is the shortage of memory because the memory size cannot be changed at the runtime. The size of the stack is determined at the compile time. The main issue that occurs with a heap is the memory fragmentation. Here, memory fragmentation means that the memory gets wasted.
It is of fixed size. It is flexible to use as the size of the heap can vary as per our needs.
The access time in stack is faster. The access time in heap is slower.
The size of the stack memory is decided by the operating system. The size of the heap memory is decided by the programmers.
The scope of the variable cannot be changed. The scope of the variable can be changed.






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA