操作系统实验课代码记录(C++&&链表指针)

用双向链表实现作业动态分配内存里的最先选择算法和最佳选择算法。

#include
using namespace std;
struct node{//双向链表
    int name;
    int m;//自己占用的空间大小
    int start;//起始点
    struct node *nxt;
    struct node *pre;
};
struct node *head;
//建立链表头节点
void build(){
    head=(node*)malloc(sizeof (node));
    head->name=-1;
    head->start=0;
    head->m=640;
    head->nxt=NULL;
    head->pre=NULL;
}
//最先选择链表,建立新节点
void create1(int name,int m){
    node *p=head;
    //p旧的空节点(会被赋值),q新的空节点
    //找到足够空间的空节点
    while(p!=NULL&&(p->name!=-1||p->mnxt;
    //内存不够处理
    if(p==NULL)return;
    //设置并更新新节点参数
    node *q=(node*)malloc(sizeof (node));
    q->name=-1;
    q->m=(p->m)-m;
    q->start=(p->start)+m;
    q->nxt=p->nxt;
    if(q->nxt!=NULL)q->nxt->pre=q;//把新节点的后继的前驱更新成新节点
    q->pre=p;
    //旧的空节点改变参数
    p->m=m;
    p->name=name;
    p->nxt=q;
}
//最佳选择链表,建立新节点
void create2(int name,int m){
    node *p=head;
    node *q=NULL;
    int maxm=1000;
    //找到最小的足够空间的空节点
    while(p!=NULL){
        //后面是空节点且空节点的内存够用
        if(p->name==-1&&(p->m)>=m&&(p->m)m;
        }
        p=p->nxt;
    }
    //内存不够处理
    if(q==NULL)return;
    //p是够用的空内存(会被赋值) q是新生成的内存
    p=q;
    //设置并更新新节点的参数
    q=(node*)malloc(sizeof (node));
    q->name=-1;
    q->m=(p->m)-m;
    q->start=(p->start)+m;
    q->nxt=p->nxt;
    if(q->nxt!=NULL)q->nxt->pre=q;
    q->pre=p;
    //旧空节点改变参数
    p->m=m;
    p->name=name;
    p->nxt=q;
}
//删去name所在的空间
void delet(int name){
    node *p=head;
    //p:name所在的节点   q:name前驱或者后继所在节点
    while(p!=NULL&&p->name!=name)p=p->nxt;
    //内存不够处理
    if(p==NULL)return;
    p->name=-1;
    if(p->pre!=NULL){//往前找
        //p->q
        if(p->pre->name==-1){
            node *q=p;
            p=p->pre;
            p->m+=q->m;//p合并q的内存空间
            p->nxt=q->nxt;
            if(p->nxt!=NULL){//与上一句形成双向图
                p->nxt->pre=p;
            }
            free(q);
        }
    }
    if(p->nxt!=NULL){//往后找
        //p->q
        if(p->nxt->name==-1){
            node *q=p->nxt;
            p->m+=q->m;//p合并q的内存空间
            p->nxt=q->nxt;
            if(p->nxt!=NULL){//与上一句形成双向图
                p->nxt->pre=p;
            }
            free(q);
        }
    }
}
//删去头节点使得空间释放
void Delet(struct node *p){
    if(p==NULL)return;
    Delet(p->nxt);
    free(p);
}
int main(){
    freopen("1.txt","r",stdin);
    node *p=head;
    int n,m,name;

    printf("最先适应算法\n---------------------------\n");
    build();
    for(int i=0;i<11;i++){
        scanf("%d%d%d",&n,&name,&m);//cin>>n>>name>>m;
        if(n==1){
            create1(name,m);
        }
        else delet(name);
        p=head;
        printf("空闲空间\n");
        while(p!=NULL){
            if(p->name==-1)printf(" \t%d\t%d\n",p->start,p->start+p->m);
            p=p->nxt;
        }
        p=head;
        printf("占用空间\n");
        while(p!=NULL){
            if(p->name!=-1)printf("%d\t%d\t%d\n",p->name,p->start,p->start+p->m);
            p=p->nxt;
        }
        printf("---------------------------\n");
    }
    Delet(head);

    printf("\n\n\n\n最佳适应算法\n---------------------------\n");
    build();
    for(int i=0;i<11;i++){
        cin>>n>>name>>m;
        if(n==1){
            create2(name,m);
        }
        else delet(name);
        p=head;
        printf("空闲空间\n");
        while(p!=NULL){
            if(p->name==-1)printf(" \t%d\t%d\n",p->start,p->start+p->m);
            p=p->nxt;
        }
        p=head;
        printf("占用空间\n");
        while(p!=NULL){
            if(p->name!=-1)printf("%d\t%d\t%d\n",p->name,p->start,p->start+p->m);
            p=p->nxt;
        }
        printf("---------------------------\n");
    }
    Delet(head);

    return 0;
}

用链表实现文件管理
包括
mkdir 创建子文件
rmdir 删除子文件夹
ls 列出当前目录下的文件及文件夹
cd 打开某个文件夹
rm 删除某个文件夹或者文件
create 创建文件
close 关闭文件(流处理)
open 打开文件(流处理)
write 对文件进行写操作
read 对文件进行读操作

#include
#define mem(a,b) memset(a,b,sizeof(a))
#define ll long long
#define ull unsigned long long
using namespace std;
const int maxn=105;
const int mod=1e9+7;
const double eps=1e-5;
struct node{
    node *child;//儿子节点(文件夹下的文件头节点)
    node *bro;//兄弟节点(同一个文件夹下)
    string name;//文件名
    int length;//文件夹下(文件及文件夹)的数量
    bool state;//是不是文件夹
    string s;//文件内容
};
/*
now->child='..'//头节点-----now->child->bro
now->child->child=now//父文件夹
*/
string str;
node *now;
node *head;//每一个文件夹
node *q;
node *p;//基本被改动的是while(p):p->bro
void build(){
    head=new node;
    head->child=NULL;
    head->bro=NULL;
    head->name="HOME";
    head->state=true;
    head->length=0;
    p=new node;
    p->name="..";
    p->state=true;
    p->length=1;
    p->bro=NULL;
    p->child=head;
    head->child=p;
}
void mkdir(){//创建子目录
    cin>>str;///创作文件夹
    p=new node;
    p->child=NULL;
    p->bro=NULL;
    p->name=str;
    p->state=true;
    p->length=0;
    q=now->child;
    while(q->bro!=NULL&&(q->bro->name!=str||q->bro->state==false))
        q=q->bro;//q是我现在要的目标文件夹p的前一个人
    if(q->bro==NULL){
        node *u=new node;
        u->name="..";
        u->child=now;
        u->bro=NULL;
        u->length=1;
        u->state=true;
        p->child=u;//文件夹特有的操作
        q->bro=p;
        now->length++;
        return;
    }
    //有相同的文件夹
    //if(q->bro->state)
    cout<<"Error: directory exists\n";
    //else cout<<"Error: file exits\n";
}
void rmdir(){//删除子目录
    cin>>str;
    p=now->child;//(p是被删除文件的bro)
    while(p->bro!=NULL&&(p->bro->name!=str||p->bro->state==false))
        p=p->bro;
    if(p->bro==NULL){
        cout<<"Error: no such directory\n";
        return;
    }
    if(p->bro->state&&p->bro->length!=0){
        cout<<"Error: This directory has file\n";
        return;
    }
    now->length--;
    node *l=p->bro;
    p->bro=l->bro;
    free(l->child);//".."
    free(l);
}
void ls(){//显示当前目录下的文件及文件夹
    p=now->child;//".."
    while(p->bro!=NULL){
        cout<bro->name<<"\t";
        p=p->bro;
    }
    cout<>str;
    if(str==".."){//错误处理
        now=now->child->child;
        return;
    }
    p=now->child;
    while(p->bro!=NULL&&(p->bro->name!=str||p->bro->state==false)){
        p=p->bro;
    }
    if(p->bro==NULL){
        cout<<"Error: no such directory\n";
        return;
    }
    now=p->bro;
}
void create(){//创建文件
    cin>>str;
    p=new node;
    p->child=NULL;
    p->bro=NULL;
    p->name=str;
    p->length=0;
    p->s="";
    p->state=false;
    q=now->child;
    while(q->bro!=NULL&&(q->bro->state||q->bro->name!=str))
        q=q->bro;
    if(q->bro==NULL){
        q->bro=p;
        now->length++;
        return;
    }
    if(q->bro->state)cout<<"Error: directory exits\n";
    else cout<<"Error: file exits\n";
}
void open(){//打开文件(NULL)
    cin>>str;
}
void close(){//关闭文件(NULL)
    cin>>str;
}
void write(){//写文件
    cin>>str;
    p=now->child;
    while(p->bro!=NULL&&(p->bro->name!=str||p->bro->state))
        p=p->bro;
    if(p->bro==NULL){
        cout<<"Error: no such file\n";
        return;
    }
    cout<<"**********************please write your file*************************\n";
    getchar();
    getline(cin,str);
    p->bro->s=str;
}
void read(){//读文件
    cin>>str;
    p=now->child;
    while(p->bro!=NULL&&(p->bro->name!=str||p->bro->state)){
        p=p->bro;
    }
    if(p->bro==NULL){
        cout<<"Error: no such file\n";
        return;
    }
    cout<bro->s<>str;
    node *p=now->child;
    while(p->bro!=NULL&&(p->bro->name!=str||p->bro->state)){
        p=p->bro;
    }
    if(p->bro==NULL){
        cout<<"Error: no such file\n";
        return;
    }
    now->length--;
    node *q=p->bro;
    p->bro=q->bro;//文件没有".."
    free(q);
}
void whereis(){
    stacklu;
    p=now;
    while(p!=head){
        lu.push(p->name);
        p=p->child->child;
    }
    cout<<"/HOME:";
    while(!lu.empty()){
        cout<<"/"< ";
}
string op;
int main(){
    build();
    now=head;
    whereis();
    while(cin>>op){
        if(op=="read")read();
        else if(op=="rm")rm();
        else if(op=="rmdir")rmdir();
        else if(op=="write")write();
        else if(op=="open")open();
        else if(op=="ls")ls();
        else if(op=="mkdir")mkdir();
        else if(op=="create")create();
        else if(op=="close")close();
        else if(op=="cd")cd();
        else cout<<"Error input\n";
        whereis();
    }
    return 0;
}
/*test
mkdir
my
mkdir
your
mkdir
his
ls
rmdir
my
ls
cd
your
create
yourfile
ls
write
yourfile
12234566
read
yourfile
create
last
ls
rm
yourfile
ls
*/

你可能感兴趣的:(课设&实验)