主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可可爱爱草莓派
2024年9月1日 17:32
用vector每次用erase删除表演的小朋友
P1018
回复 0
|
赞 0
|
浏览 988
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int> a; for(int i = 1;i <= n;i++) a.push_back(i); int i,cnt = 0,s = 0; while(a.size() > 1){  ...
morning
2024年8月15日 21:03
击鼓传花 题解:循环链表解决
P1018
回复 0
|
赞 0
|
浏览 293
#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); &nbs...
我与代码的故事
2024年4月20日 17:03
击鼓传花(C++) 题解:
P1018
回复 0
|
赞 1
|
浏览 569
#include<bits/stdc++.h> using namespace std; const int N = 110; int n; bool st[N]; vector<int> res; int main() { cin >> n; int cnt = 0; for(int i = 1; i <= n + 1; i ++) { if(res.size() == n) break; if(!st[i]) cnt ++; ...
flipped
2024年4月17日 17:46
击鼓传花 题解:
P1018
回复 0
|
赞 0
|
浏览 607
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <math.h> #include <string.h> int main() { int n; scanf("%d", &n); int arr[100] = {0}; int count = 0;//记录表演过得小朋友人数; i...
gzulianxisheng
2024年3月24日 21:12
击鼓传花 题解:队列解题
P1018
回复 0
|
赞 0
|
浏览 756
#include <bits/stdc++.h> using namespace std; int main(){ queue<int> Q; int n; cin >> n; for (int j = 0; j < n; j++) { Q.push(j+1); &n...
我爱陈少熙
2024年3月24日 15:48
击鼓传花 题解:非链表版
P1018
回复 0
|
赞 0
|
浏览 444
#include <iostream> #include<bits/stdc++.h> using namespace std; int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++) { a[i]=i+1; }...
为欢几何
2024年3月24日 15:42
击鼓传花 题解:循环链表,AC
P1018
回复 0
|
赞 0
|
浏览 549
#include<bits/stdc++.h> using namespace std; struct node { int n; struct node *next; }; //创建循环链表 struct node * create(int n) { struct node* head = (struct node*)malloc(sizeof(struct node)); head->next = NULL; ...
sssmw
2024年3月23日 21:03
击鼓传花 (c用数组实现)题解:
P1018
回复 0
|
赞 1
|
浏览 541
#include <stdio.h> #include <stdlib.h> #define N 100 int main() { int n,a[N]={0},count,i,k; scanf("%d",&n); count=n; i=-1; while(count>0){//控制剩余小朋友个数 k=3; &nbs...
1576684866
2024年3月23日 15:00
击鼓传花 题解:
P1018
回复 0
|
赞 0
|
浏览 458
#include <cstdio> using namespace std; #include <string.h> #include <iostream> #include <stdlib.h> typedef struct node { int number; struct node* next; }*LinkList,Node; //遍历链表 void Print(LinkList& L) {  ...
光明守护神
2024年3月10日 15:01
击鼓传花 题解:图解题目意思
P1018
回复 2
|
赞 2
|
浏览 780
1 2 3 4 5 1 2 3 4 5 1 2 4 5 1 2 4 5 1 2 4 1 2 4 1 4 1 4 4 用list写一个循环链表 #include <iostream> #include <list> using namespace std; int main() { { int n; cin >> n; list<int>l; list<int>::iterator it; for (int ...
1
2
3
4
题目
击鼓传花
题解数量
38
发布题解
热门题解
1
(无头结点)循环单链表—纯C
2
vector究极无敌简洁版
3
P1018题解 - 链表操作
4
击鼓传花 题解:图解题目意思
5
循环链表解决
6
击鼓传花 题解:用不带头结点的循环链表(带头结点的太麻烦了)
7
击鼓传花 (c用数组实现)题解:
8
击鼓传花 题解:
9
约瑟夫环------vector模拟
10
击鼓传花(约瑟夫环)