mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
* FCFS scheduling algorithm in operating system Added C++ implementation of FCFS scheduling algorithm in a new directory Operating-System/Scheduing-Algorithms * Renamed files and directories to match guidelines * Updated comments * Added comments for member variables of FCFS class * Deleted .vscode directory * Replaced array of tuples with vector of tuples Replaced formatted printf with cout and iomanip flags Removed unused code blocks * Replaced array of tuples with vector of tuples * Removed nested directory * updating DIRECTORY.md * clang-format and clang-tidy fixes for c95495b4 * clang-format and clang-tidy fixes for 732f247d * Updated the documentation and used unsigned int for non-negative integers * clang-format and clang-tidy fixes for 295f0cc6 * clang-format and clang-tidy fixes for 31f05910 * Added test cases using random number generator * Replaced time(0) with time(nullptr) * clang-format and clang-tidy fixes for 40d663d3 * Fixed documentation * Rearranged code * clang-format and clang-tidy fixes for b40a2801 * clang-format and clang-tidy fixes for 243dcc15 * Updated documentation * clang-format and clang-tidy fixes for 899ff7ea * Fixed some typos * Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review * Replaced int with uint32_t in lines 259 and 263 Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com>