文章

6

粉丝

18

获赞

0

访问

1.9k

头像
击鼓传花 题解:循环链表解决
P1018 贵州大学机试题
发布于2024年8月15日 21:03
阅读数 294

#include <bits/stdc++.h>

using namespace std;

typedef struct Node{
    int num;
    struct Node* next;
};

int n;

Node* create(){
    Node* head,*now,*pre;
    for(int i=1;i<=n;i++){
        now=new(Node);
        //第一个节点处理
        if(i==1){
            head=now;
            pre=now;
        }
        now->num=i;
        now->next=head;
        pre->next=now;
        pre=now;
    }
    return head;
}

void last(Node* head,int m){
    Node *p,*pre;
    p=head;
    int i=1;
    while(p!=NULL){
        //找到最后一个表演的孩子
        if(p==p->next){
          ...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发