1754: 字符串排序 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#defi…… 题解列表 2025年12月10日 0 点赞 0 评论 290 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:#include <stdio.h>#include <string.h>#include<math.h>#define PI 3.1415int main(){ …… 题解列表 2025年12月10日 1 点赞 0 评论 488 浏览 评分:0.0
1536: 蓝桥杯算法提高VIP-最长单词 摘要:#include<stdio.h>#include<string.h>#define N 200000char s[N];int main(){ in…… 题解列表 2025年12月10日 0 点赞 0 评论 211 浏览 评分:0.0
1493: 蓝桥杯算法提高VIP-任意年月日历输出 摘要:#include<stdio.h>inta[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};int …… 题解列表 2025年12月10日 1 点赞 0 评论 281 浏览 评分:10.0
1051: [编程入门]结构体之成绩统计2 摘要:#include<stdio.h>typedefstructGrade{char…… 题解列表 2025年12月10日 2 点赞 0 评论 501 浏览 评分:0.0
3048: 抓住那头牛 摘要:解题思路:广度优先算法,使用队列的结构注意事项:注意更新状态数组v[MAX_POS+1]参考代码:#include<stdio.h>#include<string.h>#def…… 题解列表 2025年12月11日 0 点赞 0 评论 180 浏览 评分:0.0
2086: 最长公共子序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int max(int x,int y){ ret…… 题解列表 2025年12月11日 0 点赞 0 评论 159 浏览 评分:0.0
1002: 三个数最大值 摘要:解题思路:三目运算注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max=0; scanf("%d %d %d&quo…… 题解列表 2025年12月11日 5 点赞 0 评论 891 浏览 评分:3.0
蓝桥杯2025年第十六届省赛真题-小说 摘要:### 解题思路要解决这个问题,我们需要理解小说的情节限制,并寻找出现最多章节的组合。我们需要考虑以下几点:1. **情节类型**: - 情节1: A 发现 B 不知道真相。…… 题解列表 2025年04月19日 4 点赞 3 评论 1666 浏览 评分:3.6