操作系统
_Dawn__
博客搬到GitHub上去了,以后应该不会在csdn上更新了.
展开
-
操作系统 磁盘调度算法
//SSTF调度 #include <bits/stdc++.h>//c++万能头文件 #define Author code 孙黎明 19110543033 #define inf 0x3f3f3f3f//定义inf为无穷大 using namespace std; //下面变量开全局,可以在main函数和自定义函数中同时使用,避免了传参数这一步骤 int a[1010];//定义数组a,用来保存访盘序列 int n;//n代表访盘个数 bool book[1010];//book[a]原创 2020-12-14 21:01:51 · 1076 阅读 · 0 评论 -
操作系统 银行家算法c++版
#include <bits/stdc++.h> using namespace std; int avallable[100],sum[100],cha[100],need[100][100],allocation[100][100],maxn[100][100],n,m,que[100]; bool book[100]; bool check() { memset(book,true,sizeof(book)); int i,j,l,k=0,ans; i=0;原创 2020-11-28 17:54:24 · 1654 阅读 · 0 评论