帅呆呆~
帅呆呆~
全部文章
分类
题解(41)
归档
标签
去牛客网
登录
/
注册
帅呆呆~的博客
全部文章
(共41篇)
题解 | #abc#
">#include<iostream> using namespace std; int main() { int a,b,c; for(int a = 0; a <= 5; ++a) { for(int b = 0; b <= 3; ++b) { for...
C++
2022-03-04
0
327
题解 | #二叉树遍历#
">#include<iostream> #include<string> using namespace std; //定义二叉树结构体 struct TreeNode{ char data; TreeNode* leftChild; TreeNode* righ...
C++
2022-03-03
0
299
题解 | #二叉树(递归法)#
">#include<iostream> using namespace std; int CountNodes(int m,int n){ if(m > n){ //递归出口 return 0; } return CountNodes(2 * m,n) +...
C++
2022-03-02
1
459
题解 | #Fibonacci(递推法)#
">#include<iostream> using namespace std; //递推法求斐波那契数 //需要将中间值进行存储 const int MAXN = 35; int fibonacci[MAXN]; //存储斐波那契数 void Initial(){ ...
C++
2022-03-02
0
290
题解 | #Fibonacci(递归法)#
">#include<iostream> using namespace std; int Fibonacci(int n){ if(n == 1 || n == 0){ return n; } return Fibonacci(n -1) + Fibonacci(n -...
C++
2022-03-02
2
330
题解 | #全排列#
">#include<iostream> #include<string> #include<algorithm> using namespace std; const int MAXN = 10; bool visited[MAXN]; //辅助数组...
C++
2022-03-02
1
413
题解 | #n的阶乘#
">#include<iostream> using namespace std; long long Fact(int n) { if(n == 1) { return 1; } return n*Fact(n-1); } int main() { int n;...
C++
2022-03-02
0
298
题解 | #计算两个矩阵的乘积#
">#include<iostream> using namespace std; const int MAXN = 100; //定义矩阵结构体 //实际上一个矩阵就是一个二维的数组 struct Matrix { int matrix[MAXN][MAXN]; int ...
C++
2022-03-02
0
405
题解 | #约数的个数#
">#include<iostream> #include<math.h> #include<vector> using namespace std; const int MAXN = 4e4; bool isPrime[MAXN]; vector<...
C++
2022-03-01
0
339
题解 | #Prime Number#
">#include<iostream> #include<math.h> #include<vector> using namespace std; const int MAXN = 1e6; bool isPrime[MAXN]; //辅助数组 ...
C++
2022-03-01
0
372
首页
上一页
1
2
3
4
5
下一页
末页