摘要: // VC08---虚拟内存页面置换算法.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include<iostream>using namespace std;const int MaxNumber=100; int PageOrder[MaxNumber];//页面访问序列 int Simulate[MaxNumber][MaxNumber];//访问各个时刻物理块的记录 int PageCount[MaxNumber];//物理块 int PageNum,LackNum,blockNum;//PageNum页面个数,L 阅读全文
posted @ 2012-11-29 17:50 叶城宇 阅读(943) 评论(0) 推荐(0) 编辑