页面置换算法的模拟实现 分别实现最佳置换算法(optimal)、先进先出(FIFO)页面置换算法和最近最久未使用(LRU)置换算法,并给出各算法缺页次数和缺页率。 #include #include #include const int MAXSIZE=100; //定义访问串最大长度 const int PAGE_FRAME_NUM=3; //定义固定分配给该进程的页面数 const int PAGE_NUM=8; //定义该进程分页数 int Queue[MAXSIZE]; //保存访问串
页式地址变换机构模拟:1.根据给出的页表情况模拟页式的地址变换机构 2.用程序模拟地址变换机构,输出指令逻辑地址到物理地址的变换 #include #include #include #include const int MAXSIZE=100; //定义访问串最大长度 const int MAX_PAGE=100; //定义最大的分页数 int Queue[MAXSIZE]; //保存访问串 int QueueNum=0; //保存访问串长度 int PageNum=0;