leetcode
mdjxy63
这个作者很懒,什么都没留下…
展开
-
图的BFS和DFS之C++实现
参考链接:https://blog.csdn.net/starstar1992/article/details/68941763图的创建手动输入,并以节点数作为输入结束标志从文件读取,文件的从第二行开始,每一行结束都要有节点数作为结束 图的存储:vector< list<int> > graph;1图的BFS非递归实现,借助队列void bfs(int v)//以v开始做广...转载 2018-04-23 14:24:42 · 297 阅读 · 0 评论 -
【C++】【总结】unordered_map,unordered_set,map和set的用法和区别
参考链接:https://blog.csdn.net/zjajgyy/article/details/65935473通过代码来区别unordered_map和mapunordered_map存储机制是哈希表,,即unordered_map内部元素是无序的。map是红黑树,map中的元素是按照二叉搜索树存储,进行中序遍历会得到有序遍历。unordered_set和setunordered_set基...转载 2018-04-23 21:27:45 · 3646 阅读 · 0 评论 -
DFS
参考链接:https://blog.csdn.net/fightforyourdream/article/details/12866861https://segmentfault.com/a/1190000006121957LeetCode 里面很大一部分题目都是属于这个范围,例如Path Sum用的就是递归+DFS,Path Sum2用的是递归+DFS+回溯这里参考了一些网上写得很不错的文章,总...转载 2018-04-21 12:11:42 · 167 阅读 · 0 评论 -
leet+lint题解python版
python_lintcode:https://www.cnblogs.com/bozhoupython_leetcode:https://blog.csdn.net/xx_123_1_rj/article/category/7741922lintcode的python题解:https://github.com/yingl/LintCodeInPythonleetcode的python...转载 2019-02-25 08:36:04 · 216 阅读 · 0 评论