Minesweeper -题解(C++代码) 摘要:```cpp #include #include #include using namespace std; void chang2(char arr[1000][1000],int n…… 题解列表 2019年07月17日 0 点赞 0 评论 1132 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要://细节问题,注意以下就好,代码如下 #include using namespace std; struct student{ string studentNumber; strin…… 题解列表 2019年07月17日 0 点赞 0 评论 752 浏览 评分:0.0
[编程入门]自定义函数处理素数-题解(C++代码) 摘要:#### 原题链接:[自定义函数处理素数](https://www.dotcpp.com/oj/problem.php?id=1029 "自定义函数处理素数") 题目要求很简单 写一个函数判断素…… 题解列表 2019年07月17日 0 点赞 0 评论 1689 浏览 评分:7.3
找出最长的字符串来-题解(C++代码) 摘要:##### 原题链接:[找出最长的字符串来](https://www.dotcpp.com/oj/problem.php?id=1782 "找出最长的字符串来") ##### 解题思路: …… 题解列表 2019年07月16日 0 点赞 0 评论 1596 浏览 评分:0.0
矩阵的对角线之和 (C++代码) 摘要:##### 原题链接:[矩阵的对角线之和](https://www.dotcpp.com/oj/problem.php?id=1784 "矩阵的对角线之和") #### 解题思路: **1…… 题解列表 2019年07月16日 0 点赞 0 评论 1749 浏览 评分:5.3
汽水瓶:找到最简规律,不使用递归 (C++代码) 摘要:首先,题目中说的办法,用两个空瓶子是可以喝到一瓶汽水的,是最高效的办法,而且什么都没有留下,是解决本题的关键,因为它什么都没有留下,所以可以避免使用递归带来的麻烦。 按照我们的想法,就是看现有的空瓶…… 题解列表 2019年07月16日 0 点赞 0 评论 1471 浏览 评分:8.0
C语言训练-求矩阵的两对角线上的元素之和-题解(C++代码) 摘要:##### 原题链接:[求矩阵的两对角线上的元素之和](https://www.dotcpp.com/oj/problem.php?id=1138 "求矩阵的两对角线上的元素之和") 解题思…… 题解列表 2019年07月16日 0 点赞 5 评论 1558 浏览 评分:9.9
简单的字符串-题解(C++代码)(注释清晰) 摘要:#include #include #include const int maxn = 26; using namespace std; int main(void) { string …… 题解列表 2019年07月16日 0 点赞 0 评论 1224 浏览 评分:0.0
等待戈多-题解(C++代码)最短路spfa模板,它还没死!!!(逃 摘要:```cpp 时间 = 路程 / 速度 #include "iostream" #include "cstdio" #include "cstdlib" #include "cstrin…… 题解列表 2019年07月15日 0 点赞 0 评论 1126 浏览 评分:6.7
忙碌的小L (C++代码)强连通分量tarjan 摘要:```cpp #include "iostream" #include "cstdio" #include "cstdlib" #include "cstring" #include "cm…… 题解列表 2019年07月15日 0 点赞 0 评论 1060 浏览 评分:9.9