文章
6
粉丝
18
获赞
0
访问
1.9k
#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){
...
登录后发布评论
暂无评论,来抢沙发