Hifipsysta-1160题-出圈(C++代码)基于STL的链表实现 摘要:```cpp #include #include using namespace std; list mylist; list::iterator iter; int main()…… 题解列表 2022年02月05日 0 点赞 0 评论 171 浏览 评分:0.0
编写题解 1160: 出圈(队列) 摘要:解题思路:把m-1个数加到后面之后,删除第一个数即可注意事项:参考代码:while True: try: n,m = map(int,input().split()) …… 题解列表 2023年12月09日 1 点赞 0 评论 115 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:参考代码://此处可以不用结构体,可以用 二维数组,本质上一样。 typedef struct people { int num; int chuquan; }PEOPLE…… 题解列表 2017年12月05日 0 点赞 0 评论 814 浏览 评分:0.0
出圈】指针malloc版 摘要:解题思路:我用的是指针根据n动态分配内存(使用malloc函数)代码直接复制过来会被打乱 0.o被注释掉的那三条语句是用来测试的(测试可视化,不然我怎么知道发生了什么)截图真麻烦,不知道大佬们都是怎么…… 题解列表 2017年10月20日 1 点赞 1 评论 391 浏览 评分:0.0
1160————出圈 摘要: import java.util.Scanner; import java.util.LinkedList; public class Main { publi…… 题解列表 2023年03月05日 0 点赞 0 评论 119 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> typedef struct no { int id; str…… 题解列表 2019年05月08日 0 点赞 0 评论 357 浏览 评分:0.0
出圈 约瑟夫环经典例题(C语言小白)请认真观看 摘要: #include int main() { int n,m,a[100],count=0,i; while(scanf("%d%d", &n,&m)!=EOF…… 题解列表 2022年04月20日 0 点赞 0 评论 166 浏览 评分:0.0
【出圈】 (C语言代码)C语言函数模块化 摘要:解题思路:参考代码:#include<stdio.h> #include<stdlib.h> int n,m; int *a; void init(); void count_off…… 题解列表 2019年01月25日 1 点赞 0 评论 377 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:我的程序m是总数,n为出圈的值! m个值放在数组中,设置两个循环变量,一个记录每次循环n个不为零的值后加一 ,每次加到n则将该处的值赋0,另一个记录赋值0的次数,当赋值0为m-1次时说明只…… 题解列表 2018年08月16日 0 点赞 0 评论 522 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int m,a[99],c=0,n,i,g=0; while(scanf("%…… 题解列表 2019年03月10日 0 点赞 0 评论 226 浏览 评分:0.0