27/02/2023

Round Robin Scheduling Program in C++ With Gantt Chart

Implementing a Round Robin Scheduling Program in C++ With Gantt Chart and arrival time. As we all know the Round Robin CPU Scheduling Algorithm Program, so we have to Write a Program code In C++ language to check how it performs all the operations. We are also going to discuss the Turn around time, burst time and execution time. We can Understand Round Robin Scheduling Algorithm by taking an example Suppose there is 4 process. and each process comes at the same time so based on FIFO(First in First Out) scheduler keep

In this article, you will get all the knowledge about the Round-robin. How it works and the pro and cons. All the processes in Ready Queue and forgiven time Slice each process will be executed until all processes are finished. Let's take an example and try to understand How Round Robin Scheduling Program Works.

Round Robin Scheduling Program in C++

Round Robin Scheduling Program in C++


Quantum = 4

Round Robin Scheduling

Now Scheduler keeps all process in Ready Queue and based on FIFO(First in First Out) send the first process for execution.

P1    P2    P3    P4    P1    P3    P4    P4

0      4      7      11     12    16    20     21
Process Ready Queue in Round Robin Scheduling

Average waiting time = 10.75
Average turnaround time = 17

What is Round Robin Scheduling Algorithm?.


Round Robin Scheduling Program in C++: Round Robin is a primitive Scheduling Algorithm and the most important and commonly used scheduling algorithm for CPU. In Round Robin Scheduling Algorithm each process has its own execution time that is called "Quantum".

After Quantum time next process starts executing for a given Quantum time and so on once a cycle is completed again process execution starts from the first, process and repeats the process again and again for saving the current state of the process Context switching is used.

  • Round Robin is a primitive Scheduling Algorithm.
  • Round Robin follows FIFO(First in First Out) Principle.
  • For executing each process in the Round Robin Time cluster or time Slice provides, so a process can execute for a particularly given amount of time, the given time is called Quantum.
  • After Quantum time for saving a state of each process Context switching is used.
  • Round Robin Scheduling Program is Great to use for full Utilization of a CPU and Multitasking.
  • Scheduler always needs to keep ready next process ready in the ready Queue or Queue for execution in CPU so we can say that scheduler plays an important role in the round-robin. 
  • After Quantum Time for each process, the same step repeats again and again.

How to Calculate Turn-Around Time in Round Robin Scheduling?


Turn Around Time = Completion Time – Arrival Time, With the help of this formula, we can calculate a Turn Around Time of all processes in Queue.

How to Calculate Waiting Time?.


Waiting Time = Turn Around Time – Burst Time, This formula is used for calculating the waiting time for the rest of the process.

Round Robin Scheduling Program in C++ With Gantt Chart


#include <iostream>
#include <cstdlib>
#include <queue>
#include <cstdio>
using namespace std;

/*Round Robin Scheduling Program in C++ With Gantt Chart*/

typedef struct process
{
	int id, at, bt, st, ft, pr;
	float wt, tat;
}

process;

process p[10], p1[10], temp;
queue<int> q1;

int accept(int ch);
void turnwait(int n);
void display(int n);
void ganttrr(int n);

int main()
{
	int i, n, ts, ch, j, x;

	p[0].tat = 0;
	p[0].wt = 0;

	n = accept(ch);
	ganttrr(n);
	turnwait(n);

	display(n);

	return 0;
}

int accept(int ch)
{
	int i, n;

	printf("Enter the Total Number of Process to Round Robin: ");
	scanf("%d", &n);

	if (n == 0)
	{
		printf("Invalid");
		exit(1);
	}

	cout << endl;

	for (i = 1; i <= n; i++)
	{
		printf("Enter an Arrival Time of the Process to Round Robin P%d: ", i);
		scanf("%d", &p[i].at);
		p[i].id = i;
	}

	cout << endl;

	for (i = 1; i <= n; i++)
	{
		printf("Enter a Burst Time of the Process to Round Robin P%d: ", i);
		scanf("%d", &p[i].bt);
	}

	for (i = 1; i <= n; i++)
	{
		p1[i] = p[i];
	}

	return n;
}

void ganttrr(int n)
{
	int i, ts, m, nextval, nextarr;

	nextval = p1[1].at;
	i = 1;

	cout << "\nEnter the Time Slice or Quantum: ";
	cin >> ts;

	for (i = 1; i <= n && p1[i].at <= nextval; i++)
	{
		q1.push(p1[i].id);
	}

	while (!q1.empty())
	{
		m = q1.front();
		q1.pop();

		if (p1[m].bt >= ts)
		{
			nextval = nextval + ts;
		}
		else
		{
			nextval = nextval + p1[m].bt;
		}

		if (p1[m].bt >= ts)
		{
			p1[m].bt = p1[m].bt - ts;
		}
		else
		{
			p1[m].bt = 0;
		}

		while (i <= n && p1[i].at <= nextval)
		{
			q1.push(p1[i].id);
			i++;
		}

		if (p1[m].bt > 0)
		{
			q1.push(m);
		}

		if (p1[m].bt <= 0)
		{
			p[m].ft = nextval;
		}
	}
}

void turnwait(int n)
{
	int i;

	for (i = 1; i <= n; i++)
	{
		p[i].tat = p[i].ft - p[i].at;
		p[i].wt = p[i].tat - p[i].bt;
		p[0].tat = p[0].tat + p[i].tat;
		p[0].wt = p[0].wt + p[i].wt;
	}

	p[0].tat = p[0].tat / n;
	p[0].wt = p[0].wt / n;
}

void display(int n)
{
	int i;

	/*
	Here 
	at = Arrival time,
	bt = Burst time,
	time_quantum= Quantum time
	tat = Turn around time,
	wt = Waiting time
	*/

	cout << "\n=====================================================\n";
	cout << "\n\nHere AT = Arrival Time\nBT = Burst Time\nTAT = Turn Around Time\nWT = Waiting Time\n";

	cout << "\n===================TABLE==============================\n";
	printf("\nProcess\tAT\tBT\tFT\tTAT\t\tWT");

	for (i = 1; i <= n; i++)
	{
		printf("\nP%d\t%d\t%d\t%d\t%f\t%f", p[i].id, p[i].at, p[i].bt, p[i].ft, p[i].tat, p[i].wt);
	}

	cout << "\n=====================================================\n";
	printf("\nAverage Turn Around Time: %f", p[0].tat);
	printf("\nAverage Waiting Time: %f\n", p[0].wt);
}

The Output of Round Robin Scheduling Program in C++


The Output of Round Robin Scheduling Program in C++ With Gantt Chart


Pros of Round Robin Scheduling


  • One of the oldest, simple, commonly used scheduling algorithms
  • Select process/thread from the ready queue in a round-robin fashion

Cons of Round Robin Scheduling


  • Do not consider the priority
  • More context switch overhead

Frequently Asked Questions(FAQ)


What is Arrival Time?


Ans- The time at which the process enters the ready queue in Round Robin Scheduling.

What is Turnaround Time?


Ans- The interval between the time of submission of a process to the time of completion.

What is Waiting Time?


Ans- The total amount of time a process spends in the ready queue in Round Robin Scheduling Algorithm.

What is Burst Time?


Ans- The time needed by the CPU to complete its execution.

What is Quantum time?


Ans- The amount of time a CPU is assigned to be executed is known as the quantum time independent of the actual burst time, a process will get scheduled in quantum parts values or we can say in quantum chunks.

Round Robin Scheduling With Gantt Chart


Round Robin Scheduling With Gantt Chart

Related Articles


Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: