Coming680
Coming680
全部文章
题解
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
/ 题解
(共4篇)
题解 | #检测循环依赖#
拓扑排序的简单运用。 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param prerequisites int整型vector<vec...
C++
拓扑排序
队列
2022-03-21
0
634
题解 | #走迷宫#
首先,若使用回溯的方法会超时,代码如下所示: #include<iostream> #include<vector> #include<queue> #define INF 1e+7 using namespace std; typedef struct node...
C++
广度优先搜索
队列
2022-03-19
2
494
题解 | #二叉树的最大宽度#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {...
C++
二叉树
队列
bfs
2022-03-08
0
418
题解 | #设计LRU缓存结构#
模拟题,直接模拟过程即可。 class Solution { public: /** * lru design * @param operators int整型vector<vector<>> the ops * @param k int...
C++
数组
模拟
队列
2022-03-07
0
338