页面置换算法(FIFO算法,LRU算法).doc

  1. 1、本文档共7页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
页面置换算法(FIFO算法,LRU算法)

实验四 页面置换算法 实验流程图 实验程序 #include stdio.h #include stdlib.h #include malloc.h #define null 0 #define len sizeof(struct page) struct page { int num; int tag; struct page *next; }; struct page *create(int n) /*建立分配的内存空间,并初始化,返回头结点*/ {int count=1; struct page *p1,*p2,*head; head=p2=p1=(struct page *)malloc(len); //开辟一个新的单元,并将malloc返回的指针转换为结构体类型的指针 p1-tag=-1;p1-num=-1; while(countn) {count++; p1=(struct page *)malloc(len); p1-tag=-1;p1-num=-1; p2-next=p1; p2=p1; } p2-next=null; return(head); } void FIFO(int array[],int n) {int *p; struct page *cp,*dp,*head,*new1; int count=0; head=create(n); p=array; while(*p!=-1) { cp=dp=head; for(;cp-num!=*pcp-next!=null;) cp=cp-next; if (cp-num==*p) printf( ! ); else { count++; cp=head; for(;cp-tag!=-1cp-next!=null;) cp=cp-next; if(cp-tag==-1) {cp-num=*p; cp-tag=0; printf( * ); } else {new1=(struct page*)malloc(len); new1-num=*p; new1-tag=0; new1-next=null; cp-next=new1; head=head-next; printf( %d ,dp-num); free(dp); } } p++; } printf(\nQueye Zongshu : %d \n,count); } void LRU(int array[],int n) {int count=0,*p=array; struct page *head,*cp,*dp,*rp,*new1,*endp; head=create(n); while(*p!=-1) {cp=dp=rp=endp=head; for(;endp-next!=null;) endp=endp-next; for(;cp-num!=*pcp-next!=null;) {rp=cp;cp=cp-next;} if(cp-num==*p) {printf( ! ); if(cp-next!=null) {if(cp!=head) rp-next=cp-next; else head=head-next; } endp-next=cp; cp-next=null; } else {count++; cp=rp=head; for(;cp-tag!=-1cp-next!=null;) cp=cp-next; if(cp-tag==-1) {printf( * ); cp-num=*p; cp-tag=0; } else {new1=(struct page *)malloc(len); new1-num=*p; new1-tag=0; new1-next=null; cp-next=new1; dp=head; head=head-n

文档评论(1)

  • 用户头像 游客 2018-06-29 09:44:11
    垃圾东西
yurixiang1314 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档