一元二次方程-超简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip> //勿忘using namespace std;int main(){ do…… 题解列表 2022年02月25日 0 点赞 0 评论 414 浏览 评分:0.0
1018: [编程入门]有规律的数列求和 摘要:解题思路:观察数列,除了第一个数,之后每个数的分母都是前一个数的分子,分子是前一个数的分子分母之和。看清楚规律就好写了。注意事项:回头看看1015: [编程入门]求和训练(链接:https://blo…… 题解列表 2022年02月25日 0 点赞 2 评论 863 浏览 评分:9.9
C++ Minesweeper 题解 摘要:**0 0 0 0 0 0** **0 **# & & &**0** **0** & & & &**0** **0** & # & &**0** **0** & & & &**0** **0…… 题解列表 2022年02月25日 0 点赞 0 评论 361 浏览 评分:9.9
计算行列式-题解(C++代码) 摘要:解题思路:先将行列式转化为三角形行列式参考代码:#include<iostream> using namespace std; const int N = 7; double arr[N][…… 题解列表 2022年02月25日 0 点赞 0 评论 374 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型)——枚举 摘要:``` #include #include using namespace std; const int mod=5e4; bool prime(int x) { for (in…… 题解列表 2022年02月25日 1 点赞 0 评论 295 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;const int N = 100;char A[N];in…… 题解列表 2022年02月25日 0 点赞 0 评论 1328 浏览 评分:9.9
矩阵快速幂——模板 摘要:·· ``` #include #include using namespace std; const int N=30; int n,k; struct mat { …… 题解列表 2022年02月24日 0 点赞 0 评论 295 浏览 评分:0.0
1205_题解_字符串的修改-最长公共子序列_dp 摘要:需要改动的次数为,目标字符串长度 - 两字符串最大公共子序列的长度#include<iostream> #include<cstring> using namespace std; const…… 题解列表 2022年02月24日 0 点赞 0 评论 201 浏览 评分:0.0
C++String类题解 摘要:解题思路:没啥思路,一步步来,我的代码应该还是很简单的注意事项:注意第一步要插入到a1前面而不是后面,删除操作需要从后往前遍历参考代码:#include<bits/stdc++.h>using nam…… 题解列表 2022年02月24日 0 点赞 0 评论 367 浏览 评分:9.9
最长回文字符串(动态规划) 自用笔记 摘要:解题思路: 动态规划注意事项:如图所示,dp[0][3]的意思是cabb,不是指c和b。以对角线为分割,从左往右一列一列的填参考代码:#include<iostream> #include<ioma…… 题解列表 2022年02月24日 0 点赞 0 评论 254 浏览 评分:0.0