First Fit Algorithm in C and C++

Here you will learn about first fit algorithm in C and C++ with program examples.

There are various memory management schemes in operating system like first fit, best fit and worst fit. In this section we will talk about first fit scheme.

What is First Fit Memory Management Scheme?

In this scheme we check the blocks in a sequential manner which means we pick the first process then compare it’s size with first block size if it is less than size of block it is allocated otherwise we move to second block and so on.

When first process is allocated we move on to the next process until all processes are allocated.

Also Read: Best Fit Algorithm in C and C++

First Fit Algorithm

  1. Get no. of Processes and no. of blocks.
  2. After that get the size of each block and process requests.
  3. Now allocate processes
    if(block size >= process size)
    //allocate the process
    else
    //move on to next block
  4. Display the processes with the blocks that are allocated to a respective process.
  5. Stop.

Program for First Fit Algorithm in C

Program for First Fit Algorithm in C++

Output

First Fit Algorithm in C and C++

Comment below if have any queries or found any information incorrect in above first fit algorithm in C and C++.

12 thoughts on “First Fit Algorithm in C and C++”

  1. Hello Niraj sir….
    I typed ur code for first fit c program….
    But the output is different from ur output….with the same values…..
    Please help me out sir with this bug…
    As soon as possible

  2. the code written here is wrong. in the first block only there is enough memory to save the second processor size but it takes processor 2 to allocate 2nd memory size wats the use of this then? please figure it out.

  3. Write a C program that manages memory by dynamic multiple partitions
    choose the size of the central memory and the work unit
    display
    the search for a free area for a waiting program is done according to the first fit algorithm

Leave a Comment

Your email address will not be published. Required fields are marked *