Showing posts with label SJF Algorithm. Show all posts
Showing posts with label SJF Algorithm. Show all posts

Shortest Job First (SJF) Disk Scheduling Algorithm in C++


#include <iostream>

using namespace std;

int main()
{
    clrscr();
    int n,a[4],b[4],i,j;
    float k;
    cout<<"Enter no. of process :";
    cin>>n;

Custom Search