矩阵最大值 简单做法希望能帮到你 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月09日 0 点赞 0 评论 24 浏览 评分:0.0
哥德巴赫曾猜测 摘要:解题思路:isprime 函数用于判断一个整数是否为素数。 首先处理一些特殊情况,如果 n 小于等于 1 则不是素数,如果小于等于 3 则是素数,如果能被…… 题解列表 2024年12月09日 0 点赞 0 评论 71 浏览 评分:0.0
计算一个整数N的阶乘C++版 摘要:```cpp #include /* 这里也可以用万能头,看看自己的喜爱: #include #include //这里Windows.h不能使用,不然会错 */ using name…… 题解列表 2024年12月09日 1 点赞 0 评论 72 浏览 评分:10.0
翁恺解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;int max=0;scanf("%d%d%d",&a…… 题解列表 2024年12月09日 2 点赞 0 评论 119 浏览 评分:0.0
字符序列模式识别-题解(C++代码) 摘要:解题思路:首先注意本题的条件,1、子串大小为0<s<1000,那么两个串大小最大为999+999=1998,最小为1+1=2,再加上中间&字符,所以整个串长度为3<=s<…… 题解列表 2024年12月09日 0 点赞 0 评论 19 浏览 评分:0.0
字符串内排序 vector 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月09日 0 点赞 0 评论 24 浏览 评分:0.0
1268: 第K极值 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; bool f(int&nb…… 题解列表 2024年12月09日 0 点赞 0 评论 26 浏览 评分:0.0
1740: 特殊排序 题目都不描述清楚!!! 摘要:解题思路:注意事项: 如果只有1个数则取出这个数输出-1如 &nb…… 题解列表 2024年12月08日 0 点赞 0 评论 22 浏览 评分:0.0
掌握反向迭代就行 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ &n…… 题解列表 2024年12月08日 0 点赞 0 评论 47 浏览 评分:0.0
1739: 成绩排序 sort+结构体 包看懂 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体xs,包含…… 题解列表 2024年12月08日 0 点赞 0 评论 29 浏览 评分:0.0