题解 1160: 出圈

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

筛选

【出圈】 (C语言代码)

摘要:解题思路:看完题目,嗯,一个圈子,大家轮流报数退出,直到剩下一个人为止。这不就是一个循环链表嘛!!在创建链表的时候数据域里存放他们的序号,指针域存放他们的下一个序号,链表的尾节点指向链表的头节点,就是……

1160出圈(利用数组遍历解决)

摘要:解题思路:这道题其实最好还是用单项循环链表做时最好的,所以以后学了链表后可以拿这道题练手,下面时模拟遍历的做法。注意事项:参考代码:#include<iostream>using namespace ……

出圈直接解法

摘要:解题思路:注意事项:同样适用于m大于n的情况。参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>i……

【出圈】 (C语言代码)

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

1160————出圈

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

[出圈]-题解(Python代码)

摘要:解题思路:注意事项:参考代码:                       while True:                                        &nb

1111111111111111111111

摘要:解题思路:注意事项:参考代码#include "stdio.h"int main() { int n, m; while (scanf("%d%d", &n, &m)!=EOF) { int num……