KDDA十三尧十三
KDDA十三尧十三
全部文章
分类
题解(15)
归档
标签
去牛客网
登录
/
注册
KDDA十三尧十三的博客
全部文章
(共6篇)
题解 | #约数的个数#
#include<iostream> #include<cmath> using namespace std; //用开根号,将时间复杂度降为nlogn int divisor_count(int x) { &n...
C++
数学
数学模拟
2022-02-17
1
442
题解 | #成绩排序#
#include<iostream> #include<cstring> #include<algorithm> #include<vector> using namespace std; //主要在于维持排序稳定 typedef&...
C++
数组
数学
字符串
数学模拟
自定义排序
数学
2022-02-16
2
465
题解 | #八进制#
#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