蓝桥杯算法提高VIP-最长单词-题解(C语言代码) 摘要:```c #include"stdio.h" int main(){ char a[100000]; int b[100000], t = 0, j = 0,x=1; gets_s…… 题解列表 2019年12月05日 0 点赞 0 评论 1059 浏览 评分:9.9
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:输入完字符串后,为每个字符编码,不是空格的开始为1,直到再次碰到空格记为0.那么,编码最长的便是最长的单词,而该单词开头字母所在的编码为1,其数组中的下标即为:最长编码的下标-长度+1.然后…… 题解列表 2019年03月20日 0 点赞 0 评论 717 浏览 评分:9.9
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char s[200000],c,max[200000],p[200000];int main(){…… 题解列表 2019年03月19日 0 点赞 0 评论 342 浏览 评分:0.0
最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1536 { public static void main(String[] ar…… 题解列表 2018年12月24日 0 点赞 0 评论 399 浏览 评分:4.0
蓝桥杯算法提高VIP-最长单词 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { char s[10000]; int i…… 题解列表 2018年11月21日 0 点赞 0 评论 436 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char max[10000];void compare(char *a,char *temp)…… 题解列表 2018年11月14日 0 点赞 0 评论 365 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cstring> #include <string> #include <cmath> #include …… 题解列表 2018年11月06日 0 点赞 0 评论 332 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main{ public static void ma…… 题解列表 2018年11月05日 0 点赞 0 评论 324 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #includ…… 题解列表 2018年11月01日 0 点赞 0 评论 365 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"int main(){ int i,j=0, c1 = 0,c2=0; char str[100000] = { 0 }, …… 题解列表 2018年10月29日 1 点赞 0 评论 358 浏览 评分:0.0