Skip to content

Commit be91e2f

Browse files
committed
doc: add include documentation
1 parent 26210ba commit be91e2f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

cpu_scheduling_algorithms/round_robin_scheduling.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
* @author [Daemon19](https://github.com/Daemon19)
1010
*/
1111

12-
#include <iomanip>
13-
#include <cassert>
14-
#include <string>
15-
#include <iostream>
16-
#include <queue>
17-
#include <set>
18-
#include <utility>
19-
#include <vector>
12+
#include <iomanip> // For formatting process results output
13+
#include <cassert> // For testing the round-robin algorithm
14+
#include <string> // For converting int type to string
15+
#include <iostream> // For outputting process execution results
16+
#include <queue> // Container for process execution turn
17+
#include <set> // Container for processes that have arrived
18+
#include <utility> // So I can use std::pair
19+
#include <vector> // Container for processes that will be executed
2020

2121
/**
2222
* @brief Represent a process to be executed.

0 commit comments

Comments
 (0)