KDDA十三尧十三
KDDA十三尧十三
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
KDDA十三尧十三的博客
全部文章
(共15篇)
题解 | #最长&最短文本#
#include<iostream> #include<vector> #include<algorithm> #include<cstring> using namespace std; bool cmp(const&n...
C++
数组
2022-01-26
2
474
题解 | #八进制#
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main(void) { int n; ve...
矩阵
数学模拟
2021-04-15
0
475
题解 | #阶乘#
#include<iostream> using namespace std; //用三个递归可轻易解决 int ride(int n)//阶乘的递归 { if(n == 1) return 1; &nb...
递归
数学模拟
2021-04-14
2
615
计算机复试--对称矩阵
#include<iostream> using namespace std; #define max_len 101 int arr[max_len][max_len]; bool sym_matrix(int a...
矩阵
数学模拟
2021-03-23
1
589
计算机复试--矩阵最大值
#include #include using namespace std; //此题关键在于存储每行第一个最大数的行列值 typedef struct Matrix { int line;//行 int row;//列 int value;//值 }; int main(v...
矩阵
数学模拟
查找
2021-03-21
3
643
首页
上一页
1
2
下一页
末页