Open In App

Difference between Contiguous and Noncontiguous Memory Allocation

Last Updated : 17 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

1. Contiguous Memory Allocation : Contiguous memory allocation is basically a method in which a single contiguous section/part of memory is allocated to a process or file needing it. Because of this all the available memory space resides at the same place together, which means that the freely/unused available memory partitions are not distributed in a random fashion here and there across the whole memory space.

  

The main memory is a combination of two main portions- one for the operating system and other for the user program. We can implement/achieve contiguous memory allocation by dividing the memory partitions into fixed size partitions. 

2. Non-Contiguous Memory Allocation : Non-Contiguous memory allocation is basically a method on the contrary to contiguous allocation method, allocates the memory space present in different locations to the process as per it’s requirements. As all the available memory space is in a distributed pattern so the freely available memory space is also scattered here and there. This technique of memory allocation helps to reduce the wastage of memory, which eventually gives rise to Internal and external fragmentation. 

 

Difference between Contiguous and Non-contiguous Memory Allocation : 

S.NO. Contiguous Memory Allocation Non-Contiguous Memory Allocation
1. Contiguous memory allocation allocates consecutive blocks of memory to a file/process. Non-Contiguous memory allocation allocates separate blocks of memory to a file/process.
2. Faster in Execution. Slower in Execution.
3. It is easier for the OS to control. It is difficult for the OS to control.
4. Overhead is minimum as not much address translations are there while executing a process. More Overheads are there as there are more address translations.
5. Both Internal fragmentation and external fragmentation occurs in Contiguous memory allocation method. Only External fragmentation occurs in Non-Contiguous memory allocation method.
6. It includes single partition allocation and multi-partition allocation. It includes paging and segmentation.
7. Wastage of memory is there. No memory wastage is there.
8. In contiguous memory allocation, swapped-in processes are arranged in the originally allocated space. In non-contiguous memory allocation, swapped-in processes can be arranged in any place in the memory.
9.

It is of two types:

  1. Fixed(or static) partitioning
  2. Dynamic partitioning

It is of five types:

  1. Paging
  2. Multilevel Paging
  3. Inverted Paging
  4. Segmentation
  5. Segmented Paging
10. It could be visualized and implemented using Arrays. It could be implemented using Linked Lists.
11. Degree of multiprogramming is fixed as fixed partitions Degree of multiprogramming is not fixed

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads