2086: 最长公共子序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int max(int x,int y){ ret…… 题解列表 2025年12月11日 0 点赞 0 评论 126 浏览 评分:0.0
3048: 抓住那头牛 摘要:解题思路:广度优先算法,使用队列的结构注意事项:注意更新状态数组v[MAX_POS+1]参考代码:#include<stdio.h>#include<string.h>#def…… 题解列表 2025年12月11日 0 点赞 0 评论 145 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:#include<stdio.h>typedefstructGrade{char…… 题解列表 2025年12月10日 2 点赞 0 评论 440 浏览 评分: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 评论 246 浏览 评分:10.0
1536: 蓝桥杯算法提高VIP-最长单词 摘要:#include<stdio.h>#include<string.h>#define N 200000char s[N];int main(){ in…… 题解列表 2025年12月10日 0 点赞 0 评论 175 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:#include <stdio.h>#include <string.h>#include<math.h>#define PI 3.1415int main(){ …… 题解列表 2025年12月10日 1 点赞 0 评论 375 浏览 评分:0.0
1754: 字符串排序 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#defi…… 题解列表 2025年12月10日 0 点赞 0 评论 258 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:#include<stdio.h>intshu(inta,intb){intc,d,max,min;max=(a>b)?a…… 题解列表 2025年12月10日 0 点赞 0 评论 388 浏览 评分:0.0
1010: [编程入门]利润计算 摘要:#include<stdio.h>intmain(){floatI,bonus;&nbs…… 题解列表 2025年12月10日 0 点赞 0 评论 366 浏览 评分:10.0
1044: [编程入门]三个字符串的排序 摘要:#include"stdio.h"#include"string.h"intmain(){&nb…… 题解列表 2025年12月10日 2 点赞 0 评论 349 浏览 评分:0.0