字符串最大跨距(指针方法) 摘要:解题思路:使用strstr函数反复查找寻找到字符串最后出现的位置,最后利用指针相减的特性求出跨距。注意事项:注意录入数据时的格式;注意strstr查找不到字符串时会返回空指针(NULL);重复查找时注…… 题解列表 2024年11月12日 0 点赞 0 评论 52 浏览 评分:9.9
2869: 字符串最大跨距 摘要:解题思路:注意事项:参考代码:l = list(input().strip().split(","))a = l[0].find(l[1])b = l[0].rfind(l[2])if a != -1…… 题解列表 2024年08月02日 0 点赞 0 评论 58 浏览 评分:0.0
2869: 字符串最大跨距 摘要:解题思路:注意事项:参考代码:S, S1, S2 = map(str, input().split(",")) if S.find(S1) == -1 or S.find(S2) == -1: …… 题解列表 2024年03月26日 0 点赞 0 评论 171 浏览 评分:9.9
字符串最大跨距C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[300],s1[10],s2[10],*w; in…… 题解列表 2024年02月21日 0 点赞 0 评论 109 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年02月04日 0 点赞 0 评论 80 浏览 评分:9.9
c语言(详细解法) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int findMaxSpan(char *S, char *S1, char *S2) { …… 题解列表 2023年11月29日 0 点赞 0 评论 120 浏览 评分:9.9
字符串的函数和切片用的越来越熟练 摘要:解题思路:字符串反过来找到最近的注意事项:参考代码:l=list(input().split(','))ln=len(l[0])la=len(l[1])lb=len(l[2])if l…… 题解列表 2023年05月11日 0 点赞 1 评论 81 浏览 评分:2.0
2869: 字符串最大跨距 摘要:解题思路:注意事项:(≖͞_≖̥)参考代码:#include<iostream>#include<algorithm>#include<string.h>#include<string>using n…… 题解列表 2023年05月08日 0 点赞 0 评论 136 浏览 评分:9.9
字符串最大跨距 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 字符串最大跨距 { public static void main(String[] a…… 题解列表 2023年04月28日 0 点赞 0 评论 146 浏览 评分:9.9
2869: 字符串最大跨距 摘要:解题思路:注意事项:参考代码:s,s1,s2 = input().strip().split(",") if s1 in s and s2 in s: a = s.index(s1) …… 题解列表 2023年02月26日 0 点赞 0 评论 125 浏览 评分:2.0