数据结构-堆排序-题解(C语言代码) 摘要:#按题目意思编写的代码 ```c #include #include //堆排序算法 /* run this program using the console pauser or…… 题解列表 2019年11月09日 0 点赞 2 评论 1326 浏览 评分:9.9
数据结构-KMP算法中的模式串移动数组-题解(C语言代码) 摘要:解题思路: 该题是求kmp算法中的next数组,建议初学者先学习BF算法(这个是效率低下的,它需要回溯)而kmp算法主串每次比较失配后就不需要再回溯了,不懂下面的代码可以点击下方链接去哔哩哔哩上看小…… 题解列表 2019年11月09日 0 点赞 0 评论 793 浏览 评分:9.9
数据结构-KMP字符串模式匹配算法实现-题解(C语言代码) 摘要:解题思路: ```c # include # include int main() { int index_kmp(char *S,char *T,int pos); int n=0…… 题解列表 2019年11月09日 0 点赞 0 评论 674 浏览 评分:9.9
13.快速排序练习 (Java代码) 摘要: import java.util.Scanner; public class Main { public static void quickSort(i…… 题解列表 2019年11月09日 0 点赞 0 评论 690 浏览 评分:9.9
数组-题解(C++代码) 摘要: 很简单的一道题,照着题目简单的暴力模拟一遍就行了,需要注意的是,求f(i, j)的时候不能取模,取模的话就会失去f(i, j)的最大值,题目范围很小,开long long就能确保不溢出,最后再给答…… 题解列表 2019年11月09日 0 点赞 0 评论 822 浏览 评分:9.9
鸡兔同笼-题解(C语言代码) 摘要:```c #include int main() { int n, m,flag,a,b; while (scanf("%d%d", &n, &m) == 2) { flag …… 题解列表 2019年11月09日 0 点赞 0 评论 868 浏览 评分:9.9
蓝桥杯算法提高VIP-摆花 (C++动态规划分析和优化) 摘要:####思路分析: f[i][j]表示有i种花,能摆j盆花的方案数目 num[i]表示第i种花最多摆放的盆数 故第i种花可以摆放0,1,2...num[i]盆 此时对前i-1种花,能…… 题解列表 2019年11月09日 0 点赞 1 评论 1896 浏览 评分:9.9
拆分位数-题解(Python代码) 摘要:只需要简单的切片逆序输出,简单暴力,好像没有什么好讲的,都能看得懂 n=input() x=n[::-1] print(" ".join(x))…… 题解列表 2019年11月10日 0 点赞 0 评论 931 浏览 评分:9.9
蓝桥杯算法提高VIP-不同单词个数统计-题解(C语言代码)值得参考 摘要: #include int same(char x[],char y[]) { int i,j; if(strlen(x)!=strlen(y)) r…… 题解列表 2019年11月11日 0 点赞 6 评论 1190 浏览 评分:9.9
蓝桥杯算法提高VIP-分数统计-题解(C语言代码)值得参考 摘要:#简单粗暴C语言解法 一下是参考代码 #include int main() { int n,i,j,k,a[2000],b[2000],c[200…… 题解列表 2019年11月11日 0 点赞 1 评论 1341 浏览 评分:9.9