1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string m…… 题解列表 2024年07月13日 0 点赞 0 评论 52 浏览 评分:0.0
结构体数组解决(c语言代码) 摘要:```c #include #include #define MAX 101 typedef struct { // 定义一个结构体 char s[MAX];…… 题解列表 2024年08月23日 0 点赞 0 评论 65 浏览 评分:0.0
1644:最长字符串(使用结构体存储,扩展解法) 摘要:```cpp #include #include #include using namespace std; struct word { string w; in…… 题解列表 2024年10月04日 0 点赞 0 评论 34 浏览 评分:9.9
比较繁琐的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,p=0; char a[150],b[150],…… 题解列表 2024年12月08日 0 点赞 0 评论 47 浏览 评分:0.0