牛客861440576号
牛客861440576号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客861440576号的博客
全部文章
(共39篇)
题解 | #谁是你的潜在朋友#
// // Created by yang on 2023/5/23. // #include "cstdio" using namespace std; int main(){ int N, M, books[201] = {0}; books[0] = -1; sca...
2023-05-23
0
267
题解 | #开门人和关门人#
// // Created by yang on 2023/5/23. // #include "cstdio" #include "string" using namespace std; // substr [) struct Info { string id; string...
2023-05-23
0
252
题解 | #神奇的口袋#
#include <cstdio> #include <iostream> using namespace std; int arr[20]; int dp[40]; int main() { int n; scanf("%d", &n); for...
2023-05-23
0
251
题解 | #二叉搜索树#双指针建二叉搜索树
#include "cstdio" #include "string" using namespace std; struct TreeNode { char data; struct TreeNode* left; struct TreeNode* right; }; ...
2023-03-08
0
359
题解 | #二叉树遍历#
#include "cstdio" #include "string" using namespace std; struct BinTNode { char data; struct BinTNode* lc; struct BinTNode* rc; }; /* 描述 ...
2023-02-28
0
309
题解 | #二叉树遍历#
#include "stdio.h" #include "stdlib.h" typedef struct BTNode { // 数据域 char data; // 指针域 struct BTNode* left_child; struct BTNode*...
2023-02-28
0
309
题解 | #日期累加#
#include "cstdio" #include "string" using namespace std; int days[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool is_leap_year(int ...
2023-02-25
0
283
题解 | #Hello World for U#
#include "cstdio" #include "string" using namespace std; // 大家用笔和纸画一下就知道了 // 因为 x <= y; 且 2x + y = N - 2 // n1 = n3 = max { k| k <= n2 for al...
2023-02-25
1
351
题解 | #二叉树#
#include "cstdio" using namespace std; /** * * @param m 第m个节点的 * @param n 树的规模 * @return(756076230) 返回第m节点所包含的子树的数量 */ int tree(int m, int n) ...
2023-02-25
0
274
题解 | #Fibonacci#
#include "cstdio" using namespace std; int fib(int n) { if (0 == n) { return 0; } if (1 == n) { return 1; } retu...
2023-02-25
0
231
首页
上一页
1
2
3
4
下一页
末页