模拟进程队列管理——按照优先级入列

#include <malloc.h>
#include <stdio.h>
#include <string.h>
#define NULL 0
typedef struct table
{
    int key;/*进程ID号*/
    int priority;/*优先数值*/
    char message[10];/*进程说明信息*/
    struct table *next;
}node;

node *insert(node *head,node *news)/*将新进程插入到已经排序的队列中,对进程表按优先数从大到小排序*/
{
    node *p,*q;
    p=head;
    while(p&&p->priority>=news->priority)
    {
        q=p;
        p=p->next;
    }
    if(p==head)
    {
        news->next=head;
        head=news;
    }
    else if(p==NULL)
    {
        q->next=news;
        q=news;
    }
    else
    {
        news->next = p;  
        q->next = news; 
    }
    return head;
}

node *creat(void)/*定义函数,调用insert函数建立排好序的进程链表*/
{
    node *head,*p1;
    int n=0;
    printf("新建的进程控制表为:\n");
    printf("key priority message:\n");
    p1=(node *)malloc(sizeof(node));
    scanf("%d%d",&p1->key,&p1->priority);
    gets(p1->message);
    p1->next=NULL;
    head=NULL;
    while (p1->key>0)/*输0表示结束*/
    {
        n=n+1;
        if (n==1) head=p1;
        else 
            head=insert(head,p1);
        p1=(node *) malloc (sizeof(node));
        scanf("%d%d",&p1->key,&p1->priority);
        gets(p1->message);
        p1->next=NULL;
    }

    return head;
}

void print(node *head)/*输出链表*/
{
    node *p;
    printf("\nThe Table is:\n");
    p=head;
    if(!p)   printf("链表为空!");
    else
    {
        while(p)
        {
            printf("%d,%d,%s\n",p->key,p->priority,p->message);
            p=p->next;
        }
    }
}

void rank_out(node *head)/*模拟按优先数大小进程分级出队的过程*/
{
    int count=1;
    node *p;
    p=head;
    while(p)
    {
        printf("\n第%d个出队进程为:%d\n\n",count,p->priority);
        printf("key=%d,priority=%d,message=%s\n",p->key,p->priority,p->message);
        p=p->next;
        count++;
    }
}

int main()
{
    node *p;
    p=creat();
    print(p);
    rank_out(p);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值