Skip to content

Commit 86b1545

Browse files
committed
Profile View
1 parent 20893b5 commit 86b1545

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# CPU-Scheduling-Algorithms
1+
# CPU-Scheduling-Algorithms
2+
![Profile Views](https://komarev.com/ghpvc/?username=priyanshscpp&color=blue)
3+
4+
![Status](https://img.shields.io/badge/status-active-success?style=for-the-badge&logo=verizon)
5+
26
An implementation of various CPU scheduling algorithms in C++. The algorithms included are First Come First Serve (FCFS), Round Robin (RR), Shortest Process Next (SPN), Shortest Remaining Time (SRT), Highest Response Ratio Next (HRRN), Feedback (FB) and Aging.
37

48
## Table of Contents
@@ -12,7 +16,6 @@ An implementation of various CPU scheduling algorithms in C++. The algorithms in
1216
- [Feedback (FB)](#feedback-fb)
1317
- [Feedback with varying time quantum (FBV)](#feedback-with-varying-time-quantum-fbv)
1418
- [Aging](#aging)
15-
- [Installation](#installation)
1619
- [Input Format](#input-format)
1720

1821

@@ -89,16 +92,6 @@ the following steps.
8992
- The scheduler choses the highest priority process from among all the eligible processes.
9093

9194
- Note that during each call to the scheduler, the complete ready list has to be traversed.
92-
## Installation
93-
1- Clone the repository
94-
95-
2- Install g++ compiler and make
96-
```bash
97-
sudo apt-get install g++ make
98-
```
99-
3- Compile the code using `make` command
100-
101-
4- Run the executable file
10295

10396
## Input Format
10497
- Line 1: "trace" or "stats"

build/installation.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## Installation
2+
1- Clone the repository
3+
4+
2- Install g++ compiler and make
5+
```bash
6+
sudo apt-get install g++ make
7+
```
8+
3- Compile the code using `make` command
9+
10+
4- Run the executable file

0 commit comments

Comments
 (0)