vis
-
买股票的最佳时机
https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/ func maxProfit(prices []i…
-
Tarjan的一些学习心得与错误
Tarjan的一些学习心得与错误 在原始 /(Tarjan/) 的模板代码中, /(low/) 的处理一般是像下面这样: inline void Tarjan(int u){ df…
-
剑指 Offer 13. 机器人的运动范围
水题一道,bfs class Solution { public: int vis[110][110]; int dis[4][2] = {{1, 0}, {0, 1}, {-1,…
-
最短路小结
单源最短路径 DIjkstra 算法 auto Dijkstra = [&](int s) { std::priority_queue<PII, std::vecto…