1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,t,k; int a[3];&n…… 题解列表 2025年11月01日 0 点赞 0 评论 103 浏览 评分:0.0
求输入三个数的最大值 摘要:解题思路:主要采用了与或非 的方法注意事项:适合我这种没计算机思维的初学者(>__<)参考代码:#include<stdio.h>int main(){  …… 题解列表 2025年11月01日 0 点赞 0 评论 224 浏览 评分:0.0
Manacher算法O(n)时间复杂度求解回文子串 摘要:算法基础:**manacher算法**(叫**马拉车算法**太Low了😂)manacher算法是一个很质朴的算法,通俗来讲就是“**已掌握信息能用就用,不能用就中心扩展**”,我认为只要看透这个递…… 题解列表 2025年11月01日 1 点赞 0 评论 65 浏览 评分:10.0
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:重点:怎么把整数转化为字符参考代码:#include <stdio.h>//写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输…… 题解列表 2025年10月31日 0 点赞 0 评论 61 浏览 评分:0.0
易懂基础123456 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c; scanf(&quo…… 题解列表 2025年10月31日 0 点赞 0 评论 44 浏览 评分:0.0
2849:石头剪刀布 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); char player1[…… 题解列表 2025年10月31日 0 点赞 0 评论 53 浏览 评分:0.0
题解2808买房子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b;&n…… 题解列表 2025年10月31日 0 点赞 0 评论 41 浏览 评分:0.0
2848:基因相关性 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float std; scanf("%f",&std); char ar…… 题解列表 2025年10月31日 0 点赞 0 评论 41 浏览 评分:0.0
2847:找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[100000]; int i,j,sum=0; gets(arr); int le…… 题解列表 2025年10月31日 0 点赞 0 评论 48 浏览 评分:0.0
有没有·大佬看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voidtiqu(char[]);intmain()…… 题解列表 2025年10月30日 0 点赞 0 评论 106 浏览 评分:0.0