HNUST-OJ-链表题课设打包集合

写在前面:

相关的解题方法网上已经很多了,我就不班门弄斧防止误导大家。
这里仅展现下我的代码,如果有不认同的可以选择其他大佬。
另外,重要的事情说三遍:
不要直接copy!!!
不要直接copy!!!
不要直接copy!!!
请务必在理解的基础上写出自己的代码,这样才有可能发现自己的某些遗漏点!

OJ-2132-建立学生信息链表:

void input()
{
    typedef struct stud_node stu;
    stu *p=(stu*)malloc(sizeof(stu));
    while(scanf("%d",&p->num)&&p->num!=0)
    {
        scanf("%s%d",p->name,&p->score);
        p->next=NULL;
        if(!head)head=p;
        else tail->next=p;
        tail=p;
        p=(stu*)malloc(sizeof(stu));

    }





}

OJ-2133-学生成绩链表处理:

typedef struct stud_node stu;
struct stud_node *deletelist( struct stud_node *head, int min_score )
{
    while(head&&head->score<min_score)
    {
        head=head->next;
    }
    if(!head)return NULL;
    stu *pt=head,*pu=head->next;
    while(pu)
    {
        if(pu->score<min_score)
        {
            pt->next=pu->next;
        }
        else pt=pu;
            pu=pt->next;
    }
    return head;



}

struct stud_node *createlist()
{
    stu* head=NULL,*tail=NULL;
    stu *p=(stu*)malloc(sizeof(stu));
    while(scanf("%d",&p->num)&&p->num!=0)
    {
        scanf("%s%d",p->name,&p->score);
        p->next=NULL;
        if(!head)head=p;
        else tail->next=p;
        tail=p;
        p=(stu*)malloc(sizeof(stu));

    }
    return head;


};

OJ-2134-逆序数据建立链表:

struct ListNode *createlist()
{
    struct ListNode *p=(struct ListNode*)malloc(sizeof(struct ListNode)),*head=NULL;
    int num;
    scanf("%d",&num);
    while(num!=-1)
    {
        p->data=num;
        p->next=head;
        head=p;
        scanf("%d",&num);
        p=(struct ListNode*)malloc(sizeof(struct ListNode));
    }
    return head;



};

OJ-2135-链表拼接 :

法一:
#define swap(a,b) {int t=a;a=b;b=t;}
void kuai(int a[],int l,int r)
{
    int mid=a[l+(r-l)/2];
    int left=l,right=r;
    while(left<=right)
    {
        while(a[left]<mid)left++;
        while(a[right]>mid)right--;
        if(left<=right)
        {
            swap(a[left],a[right]);
            left++;
            right--;
        }
    }
    if(l<right)kuai(a,l,right);
    if(r>left)kuai(a,left,r);
}
typedef struct ListNode ln;
struct ListNode *mergelists(struct ListNode *list1, struct ListNode *list2)
{
    int a[2000],n=0;
    while(list1)
    {
        a[n++]=list1->data;
        list1=list1->next;
    }
    while(list2)
    {
        a[n++]=list2->data;
        list2=list2->next;

    }
    kuai(a,0,n-1);
    ln *head=NULL,*tail=NULL,*p1=(ln*)malloc(sizeof(ln));
    for(int i=0; i<n; i++)
    {
        p1->data=a[i],p1->next=NULL;
        if(!head)head=p1;
        else tail->next=p1;
        tail=p1;
        p1=(ln*)malloc(sizeof(ln));
    }
    return head;

};
法二:

typedef struct ListNode ln;
struct ListNode *mergelists(struct ListNode *list1, struct ListNode *list2)
{
    if(!list1)return list2;
    if(!list2)return list1;
    ln *head=NULL,*tail=NULL;
    while(list2&&list1)
    {
        if(list1->data<list2->data)
        {
            if(!head)head=list1;
            else tail->next=list1;
            tail=list1;
            list1=list1->next;
        }
        else
        {
            if(!head)head=list2;
            else tail->next=list2;
            tail=list2;
            list2=list2->next;
        }


    }
    if(!list1&&list2)
    {
        tail->next=list2;
        tail=list2;
        list2=list2->next;
    }
    if(!list2&&list1)
    {
        tail->next=list1;
        tail=list1;
        list1=list1->next;
    }
    return head;


};

OJ-2136-奇数值结点链表:

法一:

struct ListNode *readlist()
{
    struct ListNode *p=(struct ListNode *)malloc(sizeof(struct ListNode)),*head=NULL,*tail=NULL;
    while(scanf("%d",&p->data)&&p->data!=-1)
    {
        p->next=NULL;
        if(head==NULL)head=p;
        if(tail!=NULL)tail->next=p;
        tail=p;
        p=(struct ListNode *)malloc(sizeof(struct ListNode));


    }
    return head;





};
struct ListNode *getodd( struct ListNode **L )
{
    struct ListNode *evenhead=NULL,*eventail=NULL,*oddhead=NULL,*oddtail=NULL;
    while(*L!=NULL)
    {
        if((*L)->data%2)
        {
            struct ListNode *p= (struct ListNode*)malloc(sizeof(struct ListNode));
            p->data=(*L)->data;
            p->next=NULL;
            if(evenhead==NULL)evenhead=p;
            else eventail->next=p;
            eventail=p;
        }
        else
        {
            struct ListNode *p= (struct ListNode*)malloc(sizeof(struct ListNode));
            p->data=(*L)->data,p->next=NULL;
            if(oddhead==NULL)oddhead=p;
           else oddtail->next=p;
            oddtail=p;



        }
        *L=(*L)->next;




    }
    *L=oddhead;
    return evenhead;
}
法二:

typedef struct ListNode lt;
struct ListNode *readlist()
{
    lt *p=(lt*)malloc(sizeof(lt)),*head=NULL,*tail=NULL;
    while(scanf("%d",&p->data)&&p->data!=-1)
    {
        p->next=NULL;
        if(head==NULL)head=p;
        else tail->next=p;
        tail=p;
        p=(lt*)malloc(sizeof(lt));
    }
    return head;

};
struct ListNode *getodd( struct ListNode **L )
{
    lt* jihead=NULL,*jitail=NULL,*ouhead=NULL,*outail=NULL,*p=*L;
    while(p)
    {
        if(p->data%2)
        {
            if(!jihead)jihead=p;
            else jitail->next=p;
            jitail=p;
            p=p->next;
jitail->next=NULL;
        }
        else
        {
            if(!ouhead)ouhead=p;
            else outail->next=p;
            outail=p;
            p=p->next;
            outail->next=NULL;

        }

    }
    *L=ouhead;
    return jihead;

};

OJ-2137-单链表结点删除

法一:
typedef struct ListNode lt;
struct ListNode *readlist()
{
    lt *p=(lt*)malloc(sizeof(lt)),*head=NULL,*tail=NULL;
    while(scanf("%d",&p->data)&&p->data!=-1)
    {
        p->next=NULL;
        if(head==NULL)head=p;
        else tail->next=p;
        tail=p;
        p=(lt*)malloc(sizeof(lt));
    }
    return head;

};
struct ListNode *deletem( struct ListNode *L, int m )
{
    while(L&&L->data==m)L=L->next;
    if(!L)return NULL;
    lt *p=L,*pn=L->next;
    while(pn)
    {
        if(pn->data==m)
        {
            p->next=pn->next;
            pn=p->next;

        }
        else p=pn,pn=pn->next;




    }
return L;




};

OJ-2138-链表逆置

typedef struct ListNode ln;
struct ListNode *reverse( struct ListNode *head )
{
    ln *p=head;
    head=NULL;
    while(p)
    {
        ln* temp=(ln*)malloc(sizeof(ln));
        temp->data=p->data;
        temp->next=head;
        head=temp;
        p=p->next;

    }
    return head;





};

OJ-2139-统计专业人数

int countcs( struct ListNode *head )
{
    int count=0;
    while(head)
    {
        if(head->code[1]=='0'&&head->code[2]=='2')count++;
        head=head->next;


    }


    return count;
}

**

写在最后:

就这样结束了,over

### HNUST OJ 平台成绩排序实现方法 对于在线评测系统的成绩排序功能,通常涉及多个维度的考量,如提交的时间戳、运行时间和内存占用等。为了高效处理大量用户的提交记录并提供快速响应的成绩排序服务,推荐使用高级数据结构算法来优化性能。 #### 数据存储计 考虑到每次提交都会产生新的评分信息,在数据库层面应建立合理的索引来加速查询速度。具体来说,可以针对`submit_time`, `run_time`, 和 `memory_usage`字段创建组合索引,以便于后续按照不同条件进行筛选和排序[^1]。 #### 排序逻辑构建 当用户请求查看排行榜时,服务器端需执行如下操作: - **获取原始数据集**:从数据库中提取所有有效提交记录; - **应用过滤器**:依据特定规则(例如只保留最新版本代码)减少待排序项的数量; - **实施多级排序策略**: - 首先按总得分降序排列; - 若存在平分情况,则进一步考虑其他因素,比如解题所耗时间较短者优先,或消耗资源较少者靠前。 此过程中可借助标准库中的稳定排序函数完成复杂度较低的任务,而对于海量数据集建议引入外部工具如Redis Sorted Set来进行分布式计算[^2]。 ```cpp struct Submission { int id; string user_name; double score; // 总分数 float run_time; // 运行时间(s) unsigned long memory_used;// 内存使用(B) bool operator<(const Submission& other)const{ if (score != other.score){ return score > other.score; }else{ // 当两人分数相同的时候, 比较运行时间和使用的内存量. if(run_time!=other.run_time){ return run_time<other.run_time; } else{ return memory_used < other.memory_used; } } } }; vector<Submission> submissions; // 对submissions数组调用sort()会自动根据重载的小于号运算符进行多重属性综合评价下的升/降序调整 std::sort(submissions.begin(), submissions.end()); ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值