https://blog.csdn.net/Andrew83/article/details/80353489?depth_1.utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-tas ...
分类:
其他好文 时间:
2020-02-21 18:11:03
阅读次数:
113
发现了一个练习爬虫的网站GlidedSky 过完了第一关,第二关需要爬取1000个网页,爬取到第956个网页时报错: RecursionError: maximum recursion depth exceeded while calling a Python object 解决方法: import ...
分类:
其他好文 时间:
2020-02-18 23:16:54
阅读次数:
113
一、技术总结 1. 开始拿到这一题,知道用DFS但是不知道怎么设置递归式和递归边界,一直在想,其实就是该节点的子结点为0时就是终止时,递归式就是每次递归后,对于深度depth加一。 2. 还有一点就是怎么解决所有费用相加的问题,开始还在想,用一个数组存储所有路径然后再,在遍历,是在太笨了,可以直接定 ...
分类:
其他好文 时间:
2020-02-17 15:47:52
阅读次数:
47
```cpp const int MAX = 100000; vector G[MAXN + 5]; int dep[MAXN + 5], fa[MAXN + 5][20 + 1]; void dfs(int u, int p) { dep[u] = depth[p] + 1; fa[u][0] =... ...
分类:
编程语言 时间:
2020-02-16 12:55:01
阅读次数:
72
https://stackoverflow.com/questions/3232943/update-value-of-a-nested-dictionary-of-varying-depth import copy d = {'k': 'kv'} j_sc = {'k1': copy.copy(d ...
分类:
Web程序 时间:
2020-02-13 10:04:07
阅读次数:
74
1,倍增 2,树链剖分 3,st表 (最快 c++ vectorp[maxn]; int depth[maxn 1]+1; for(int i=1;iid[v])swap(u,v); int s=id[u],t=id[v],len=lg[t s+1]; return depth[st[s][len] ...
分类:
其他好文 时间:
2020-02-12 00:16:56
阅读次数:
81
安装 Microsoft.AspNetCore.Mvc.Newtonsoft 包 在startup.cs中添加 public void ConfigureServices(IServiceCollection services) { services.AddControllers(); servic ...
分类:
Web程序 时间:
2020-02-09 16:40:42
阅读次数:
135
深度优先遍历(Depth First Search): 自顶点起, 往下一个邻近点走,一直走,走不动了,退回一部。这样反复; /*深度优先遍历三种方式*/ let deepTraversal1 = (node, nodeList = []) => { if (node !== null) { nod ...
分类:
其他好文 时间:
2020-02-07 22:23:41
阅读次数:
68
c++,如果本节点为空,返回0,否则返回 这棵树孩子中(找到每个节点的最大值,返回最大值+1即可,1是本节点的深度) /* // Definition for a Node. class Node { public: int val; vector<Node*> children; Node() { ...
分类:
其他好文 时间:
2020-02-07 20:43:21
阅读次数:
67
解决方案也是网上搜的,总结一下 一,加大缓存区git config --global http.postBuffer 524288000这个大约是500M二、少clone一些,–depth 1git clone https://github.com/flutter/flutter.git --dep ...
分类:
Web程序 时间:
2020-02-06 16:53:01
阅读次数:
82