题解 1160: 出圈

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 1160: 出圈(队列)

摘要:解题思路:把m-1个数加到后面之后,删除第一个数即可注意事项:参考代码:while True:    try:        n,m = map(int,input().split())       ……

【出圈】 (C语言代码)

摘要:参考代码://此处可以不用结构体,可以用 二维数组,本质上一样。 typedef struct people {     int num;     int chuquan; }PEOPLE……

出圈】指针malloc版

摘要:解题思路:我用的是指针根据n动态分配内存(使用malloc函数)代码直接复制过来会被打乱 0.o被注释掉的那三条语句是用来测试的(测试可视化,不然我怎么知道发生了什么)截图真麻烦,不知道大佬们都是怎么……

1160————出圈

摘要: import java.util.Scanner; import java.util.LinkedList; public class Main { publi……

【出圈】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> typedef struct no {     int id;     str……

【出圈】 (C语言代码)

摘要:解题思路:我的程序m是总数,n为出圈的值!  m个值放在数组中,设置两个循环变量,一个记录每次循环n个不为零的值后加一 ,每次加到n则将该处的值赋0,另一个记录赋值0的次数,当赋值0为m-1次时说明只……

【出圈】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int m,a[99],c=0,n,i,g=0; while(scanf("%……