摘要: 3253. 游戏 #include <iostream> #include <queue> using namespace std; int n, k; bool check(int x) { if (x % k == 0 || (x % 10) == k) return true; return 阅读全文
posted @ 2022-09-05 17:24 Tshaxz 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 求解方法: 二叉树的最近公共祖先(Lowest Common Ancestor) 北邮考研机试题 求两结点之间的最短路径长度 视频讲解 #include <iostream> #include <algorithm> #include <cstring> using namespace std; c 阅读全文
posted @ 2022-09-05 11:22 Tshaxz 阅读(19) 评论(0) 推荐(0) 编辑
Language: HTML