Hifipsysta-1691-数据结构-KMP字符串模式匹配算法实现(C++代码) 摘要:```cpp #include using namespace std; const int MXN=1e2+10; int nextTable[MXN]; int getNextTa…… 题解列表 2022年03月09日 0 点赞 0 评论 630 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数--简单解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; scanf("%d %d",&m,&n); int min = (m<n)?m:n; int …… 题解列表 2022年03月09日 0 点赞 0 评论 224 浏览 评分:0.0
编写题解 1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void han(int m,int n){ int min = (m<n)?m:n; int max = (m>n)?m:n; …… 题解列表 2022年03月09日 0 点赞 0 评论 216 浏览 评分:0.0
编写题解 1028: [编程入门]自定义函数求一元二次方程--借鉴大佬的 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;float delta_func(float a,float b…… 题解列表 2022年03月09日 0 点赞 0 评论 306 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密--解题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<stdio.h>#include<string.h>#include<cmath>using namespace s…… 题解列表 2022年03月09日 0 点赞 0 评论 279 浏览 评分:0.0
(fly)1709: 数据结构-Floyd(弗洛伊德)最短路径算法(python) 摘要:解题思路:注意事项:参考代码:n=int(input()) inf=float('inf') dp=[] for i in range(n): dp.append(li…… 题解列表 2022年03月09日 0 点赞 0 评论 295 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; int t; for(int i=0;i<3;i++){ s…… 题解列表 2022年03月09日 0 点赞 0 评论 263 浏览 评分:0.0
编写题解 1115: DNA 摘要:解题思路:利用二维数组,应该很容易看懂(绝不是因为我想不出更聪明的做法了)。注意事项:大小写X卡了一会,注意要大写。参考代码:n = eval(input()) for i in range(n):…… 题解列表 2022年03月09日 0 点赞 0 评论 420 浏览 评分:0.0
DNA(关键还是要找规律) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int n; int a,b; int c; scanf("%d",&n); for(int i=1;i<=n…… 题解列表 2022年03月09日 0 点赞 0 评论 329 浏览 评分:0.0
1708: 数据结构-最短路径算法 摘要:解题思路:注意事项:参考代码:n,s=map(int,input().split()) dp=[] for i in range(n): dp.append(list(map(int,i…… 题解列表 2022年03月09日 0 点赞 1 评论 355 浏览 评分:0.0