2847:找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100000]; int coun…… 题解列表 2025年10月31日 0 点赞 0 评论 474 浏览 评分:10.0
易懂基础123456 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c; scanf(&quo…… 题解列表 2025年10月31日 1 点赞 0 评论 343 浏览 评分:10.0
Manacher算法O(n)时间复杂度求解回文子串 摘要:算法基础:**manacher算法**(叫**马拉车算法**太Low了😂)manacher算法是一个很质朴的算法,通俗来讲就是“**已掌握信息能用就用,不能用就中心扩展**”,我认为只要看透这个递…… 题解列表 2025年11月01日 1 点赞 0 评论 297 浏览 评分:10.0
求输入三个数的最大值 摘要:解题思路:主要采用了与或非 的方法注意事项:适合我这种没计算机思维的初学者(>__<)参考代码:#include<stdio.h>int main(){  …… 题解列表 2025年11月01日 10 点赞 0 评论 1022 浏览 评分:10.0
c语言大一新生 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the consol…… 题解列表 2025年11月01日 0 点赞 0 评论 1489 浏览 评分:10.0
用if和break来做,多种情况都考虑到了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,max,min,i,j; scanf("%d%d",&m…… 题解列表 2025年11月02日 1 点赞 1 评论 703 浏览 评分:10.0
用数组进行数字逆序输出 摘要:解题思路:非常简单的用两个循环将数组输入与输出出来注意事项:用空格将打印输出的数组隔开参考代码:#include<stdio.h>int main(){ int arr[10]; int …… 题解列表 2025年11月04日 7 点赞 0 评论 718 浏览 评分:10.0
T1026-数字逆序输出--两行解决 摘要:解题思路:注意事项:参考代码:num=list(map(int,input().split()))print(''.join(map…… 题解列表 2025年11月04日 1 点赞 0 评论 602 浏览 评分:10.0
1147:角谷猜想 摘要:解题思路:注意事项:参考代码: 方法一:#include<stdio.h>int main(){ int num; scanf("%d&quo…… 题解列表 2025年11月04日 1 点赞 0 评论 316 浏览 评分:10.0