出圈】指针malloc版 摘要:解题思路:我用的是指针根据n动态分配内存(使用malloc函数)代码直接复制过来会被打乱 0.o被注释掉的那三条语句是用来测试的(测试可视化,不然我怎么知道发生了什么)截图真麻烦,不知道大佬们都是怎么…… 题解列表 2017年10月20日 1 点赞 1 评论 391 浏览 评分:0.0
【出圈】 (C语言代码)循环链表求解,思路清晰 摘要:参考代码如下:#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct Node { int …… 题解列表 2018年04月10日 1 点赞 0 评论 1032 浏览 评分:0.0
编写题解 1160: 出圈 摘要:while True: try: n,m =map(int,input().split()) lis = list(range(1,n+1)) …… 题解列表 2021年12月22日 0 点赞 0 评论 146 浏览 评分:0.0
【出圈】 (Java代码) 摘要:解题思路:import java.util.Scanner; public class C1160 { public static void main(String[] args) { …… 题解列表 2018年03月22日 2 点赞 0 评论 712 浏览 评分:0.0
【出圈】 (C++代码) 摘要:解题思路:其实就是利用公式法的思路,不断循环需要数的数,数到的就删去,利用数组赋值删去注意事项:注意变量的初始化;参考代码:#include<bits/stdc++.h> using namespa…… 题解列表 2019年02月21日 1 点赞 0 评论 405 浏览 评分:0.0
[出圈]幸存者问题 摘要:解题思路:注意事项:参考代码:while True: try: a, b = map(int, input().strip().split()) l = [i for…… 题解列表 2021年06月17日 0 点赞 0 评论 219 浏览 评分:0.0
出圈---简单易懂 摘要:参考代码:#include <stdio.h> int fun(int n,int m) { int a[n],i=0,j=0,k=n; for(int aa=0;aa<n;a…… 题解列表 2022年09月22日 0 点赞 0 评论 110 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:参考代码://此处可以不用结构体,可以用 二维数组,本质上一样。 typedef struct people { int num; int chuquan; }PEOPLE…… 题解列表 2017年12月05日 0 点赞 0 评论 813 浏览 评分:0.0
[出圈]-题解(C++代码),数组和自定义链队来做的 摘要:```cpp #include using namespace std; typedef struct node{ //链栈 int data; struct node…… 题解列表 2020年04月05日 0 点赞 0 评论 279 浏览 评分:0.0