蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:#include<stdio.h>#include<string.h>char s[200000],c,max[200000],p[200000];int main(){ int i=0,j,len=…… 题解列表 2018年02月08日 0 点赞 0 评论 643 浏览 评分:0.0
编写题解 1536: 蓝桥杯算法提高VIP-最长单词 摘要:解题思路:注意事项:按空格分割为多个字符串,在比较每个字符串的长度。参考代码:#include<stdio.h>#include<string.h>void max(char* p, char sz[…… 题解列表 2024年03月30日 0 点赞 0 评论 405 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 十分简洁和易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100000]; int maxn=0; c…… 题解列表 2021年02月18日 0 点赞 0 评论 273 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要: #include #include #include int main() { int i,max,maxposi,c,…… 题解列表 2021年02月16日 0 点赞 0 评论 266 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码)15行 摘要:解题思路:具体看注释注意事项:无参考代码:#include <stdio.h> #include <string.h> int main(){ char str1[100005], st…… 题解列表 2020年08月17日 0 点赞 0 评论 248 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要: #include #include int main(void) { char str[100001], s[100001]; …… 题解列表 2020年03月20日 0 点赞 0 评论 541 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要: int main() { char s[100000]; gets(s);//输入带空格的字符串 int lens=strlen(s); //printf("%d"…… 题解列表 2020年03月20日 0 点赞 0 评论 496 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要:两次循环即可 #include #include int main() { int i=0,sum=0,max=0; char a[10…… 题解列表 2020年02月13日 0 点赞 0 评论 422 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char s[200000],c,max[200000],p[200000];int main(){…… 题解列表 2019年03月19日 0 点赞 0 评论 416 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char max[10000];void compare(char *a,char *temp)…… 题解列表 2018年11月14日 0 点赞 0 评论 470 浏览 评分:0.0