内存页面置换算法代码

这段代码那里错了?怎么改?望高手指教有加分在线等答复#include"stdafx.h"#include<stdio.h>#include<conio.h>#includ... 这段代码那里错了?怎么改?望高手指教
有加分 在线等答复

#include "stdafx.h"
#include<stdio.h>
#include<conio.h>
#include <malloc.h>
#define N 20

typedef struct page

{

int num; /*记录页面号*/

int time; /*记录调入内存时间*/

struct page * next;

}Page; /* 页面逻辑结构,结构为方便算法实现设计*/

int queue[100]; /*记录调入队列*/

int K; /*调入队列计数变量*/

int l;

Page * head;

void insert(Page * i,Page * top)

{

if (top==NULL)
top=i;

else
while (top->next!=NULL)
top=top->next;
top->next=i;
top=head;

}

/*初始化内存单元、缓冲区*/

void Init()

{

int i;

Page * node;

head=NULL;

for(i=0;i<l;i++)

{ node=(Page *)malloc(sizeof(Page));

node->num=-1;

node->time=l-i-1;

node->next=NULL;

insert(node,head);

}

}

Page * Equation(int fold,Page *b)

{ while (b!=NULL)

{ if (b->num==fold)
return b;
else
b=b->next;
}

return b;
}

Page * GetMax(Page *b)

{

int max=-1;

Page * tag;

while (b!=NULL)
{ if (b->time>max)
{ max=b->time;
tag=b;
}

b=b->next;
}
return tag;
}

void Lru(int fold,Page * b)
{

Page * val;

val=Equation(fold,b);
if (val)
{ val->time=0;

while(b!=NULL)
{ if (b->num==fold)
b->time=0;
else
b->time++;
b=b->next;

}

}

else
{ queue[K++]=fold;/*记录调入页面*/
val=GetMax(head);
val->num=fold;
val->time=0;
while (b!=NULL)
{ if (b->num!=fold)
b->time++;
b=b->next;
}

}

}

int main(int argc, char* argv[])
{
int a[N];

int i;

start: printf("请输入页面序列:");

for (i=0;i<N;i++)
scanf("%d",&a[i]);

printf("请输入分配页面数:");

scanf("%d",&l);

K=0;

Init();

for (i=0;i<N;i++)
Lru(a[i],head);

printf("\n缺页次数为:%6d\n缺页率:%16.6f",K,(float)(K)/N);
printf("\nAre you continuing!\ty?");

if(getche()=='y')

goto start;

return 1;
}
展开
 我来答
忘至白葬不情必0T
2006-05-16 · TA获得超过3万个赞
知道大有可为答主
回答量:1.1万
采纳率:90%
帮助的人:1.2亿
展开全部
没有仔细看,但发现了一个很容易发生的错误,即函数参数的传递问题。
Init()的最后一句insert(node,head),因为C语言里函数参数采用值传递,那么insert函数执行前head为NULL,执行时,程序会生成一个临时的值为NULL的指针变量作为参数来处理,函数执行完后,head仍为NULL,没有任何改变。因此,就算循环执行了20次,head仍为NULL.
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式