20221124Minesweeper 摘要:解题思路:创建一个(二维)字符数组与一个(二维)整数数组在字符数组中输入'*'或'.'时进行判断:若'*',则将其符号数组下标对应相同下标的整数数组元素…… 题解列表 2022年11月24日 0 点赞 0 评论 411 浏览 评分:0.0
亲密数简化编译C语言,初学者 摘要:解题思路:参考了很多解法,很多复杂度比较高,提交的话时间会超时,思路都大同小异都是利用循环判断要么的话就比较难懂,对初学者不是那么友好下面是我看到的并且认为比较巧妙也比较好懂的一种解法由题目可以很好理…… 题解列表 2022年11月24日 0 点赞 1 评论 521 浏览 评分:9.9
编写题解 2922: 合影效果,写的太差了,望指正 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char xb[8]; float high;}stu;…… 题解列表 2022年11月24日 0 点赞 0 评论 515 浏览 评分:9.9
废物废物废物废物废物废物废物是我 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[20]; fgets(str,20,stdin…… 题解列表 2022年11月24日 0 点赞 3 评论 796 浏览 评分:9.9
20221124The 3n + 1 problem 摘要:解题思路:注意事项:输入&a,&b不确定其大小参考代码:#include <stdio.h>long len(long n){ long c=1; while(n!=1) { if (n%2==0…… 题解列表 2022年11月24日 0 点赞 0 评论 313 浏览 评分:0.0
我是硬解的废物 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,p1=0,p2=0; char s1[10],s2[…… 题解列表 2022年11月24日 0 点赞 0 评论 556 浏览 评分:7.3
一个采购唯一会的才方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100000]; fgets(ch,99999,…… 题解列表 2022年11月24日 0 点赞 0 评论 371 浏览 评分:0.0
深度优先搜索(C语言) 摘要:求助!运行错误55,不知道哪错了,大佬帮忙找找bug参考代码:#include<stdio.h> #include<stdlib.h> //#include<string.h> //字符串操作文件…… 题解列表 2022年11月24日 0 点赞 0 评论 432 浏览 评分:9.9
蓝桥杯算法训练-2的次幂表示-主要记录一下自己花了很长时间的复杂方法 摘要:解题思路:注意事项:参考代码:from math import *# 生成正常的列表def func1(m): list1=[] while 1: a=int(log(m,2…… 题解列表 2022年11月24日 0 点赞 0 评论 317 浏览 评分:0.0
约瑟夫环——用循环链表来解决 摘要:```java package ACM; import java.util.Scanner; public class ACMJosepfu { public static vo…… 题解列表 2022年11月24日 0 点赞 0 评论 427 浏览 评分:9.9