蓝桥杯算法提高VIP-最长单词-题解(C语言代码)15行 摘要:解题思路:具体看注释注意事项:无参考代码:#include <stdio.h> #include <string.h> int main(){ char str1[100005], st…… 题解列表 2020年08月17日 0 点赞 0 评论 216 浏览 评分:0.0
就几行代码 摘要:解题思路:每次输入新串和之前的最长串比较,如果比之前的串长则替换进a中,直到所有串输入完毕,然后将a中最长串输出就行。注意事项:参考代码:#include<iostream>using namespa…… 题解列表 2021年11月30日 0 点赞 0 评论 197 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class C1536 { public static void main(String[…… 题解列表 2018年03月14日 0 点赞 0 评论 686 浏览 评分:0.0
简短11111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,v; int t=0; …… 题解列表 2022年08月07日 0 点赞 0 评论 217 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { char s[10000]; int i…… 题解列表 2018年11月21日 0 点赞 0 评论 462 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要: #include #include int main(void) { char str[100001], s[100001]; …… 题解列表 2020年03月20日 0 点赞 0 评论 419 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要: #include #include #include int main() { int i,max,maxposi,c,…… 题解列表 2021年02月16日 0 点赞 0 评论 233 浏览 评分: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 评论 366 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:统计出每一个单词,与最长单词进行比较,保留最长单词即可。参考代码:#include <stdio.h> #include <string.h> void fun(char *a,char…… 题解列表 2018年10月21日 0 点赞 0 评论 487 浏览 评分:0.0
最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1536 { public static void main(String[] ar…… 题解列表 2018年12月24日 0 点赞 0 评论 414 浏览 评分:4.0