西区梭梭树
西区梭梭树
全部文章
分类
归档
标签
去牛客网
登录
/
注册
西区梭梭树的博客
全部文章
(共50篇)
题解 | #二叉树遍历#
#include <iostream> using namespace std; struct node { char c; node* leftChild; node* rightChild; node(char ch) { c = ch...
2023-03-11
0
301
题解 | #To Fill or Not to Fill#
#include <iostream> #include <map> using namespace std; int main() { int cmax, d, davg, n; while (cin >> cmax >> d &g...
2023-03-10
0
292
题解 | #鸡兔同笼#
#include <iostream> using namespace std; int main() { int a; while (cin >> a ) { // 注意 while 处理多个 case // cout << a...
2023-03-10
0
288
题解 | #数字阶梯求和#
#include <iostream> using namespace std; const int MAX = 200; //试出来的,一开始取100不通过 struct bigInterger { int data[MAX]; int length; bigI...
2023-03-10
0
301
题解 | #N的阶乘#
#include <iostream> using namespace std; const int MAX=3000;//试出来的 struct bigInterger { int data[MAX]; int length = 1; bigInterger()...
2023-03-10
0
247
题解 | #矩阵幂#
#include <iostream> using namespace std; struct matrix { int data[10][10]; int row; int col; matrix(int r) { row = col =...
2023-03-09
0
237
题解 | #A+B for Matrices#
#include <iostream> using namespace std; struct matrix { int data[10][10]; int row; int col; matrix(int r, int c) { row ...
2023-03-09
0
267
题解 | #整除问题#
#include <iostream> #include <vector> #include <map> using namespace std; vector<int> getPrimes(int max) { vector<int&g...
2023-03-09
0
324
题解 | #约数的个数#
#include <iostream> #include "cmath" using namespace std; int main() { int n; while (cin >> n) { // 注意 while 处理多个 case //...
2023-03-08
0
263
题解 | #质因数的个数#
#include <iostream> #include <cmath> #include <vector> using namespace std; vector<int> getzys(int N) { //筛选出小于等于根号n的所有素数,大于根号...
2023-03-08
0
247
首页
上一页
1
2
3
4
5
下一页
末页