上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: Strongly Connected Components <!-- .entry-header --> A directed graph is strongly connected if there is a path between all pairs of vertices. A strong 阅读全文
posted @ 2016-04-07 08:23 流白 阅读(588) 评论(0) 推荐(0) 编辑
摘要: 若出现类似Product activation must be completed within 5 days 的错误,解决办法 注意第2步很重要,注册码的验证需要公钥私钥配对,所以一定要用算号时使用的 阅读全文
posted @ 2016-03-24 04:07 流白 阅读(818) 评论(0) 推荐(0) 编辑
摘要: Following features of C++ are not there in Java. No pointers No sizeof operator No scope resolution operatorLocal variables in functions cannot be sta 阅读全文
posted @ 2016-03-16 05:57 流白 阅读(200) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int divide(int dividend, int divisor) { long long n = dividend, m = divisor; // determine sign of the quotient int sign = n = 0; i--) if (t ... 阅读全文
posted @ 2016-03-16 05:00 流白 阅读(532) 评论(0) 推荐(0) 编辑
摘要: Finding Shortest Paths By BFS􀁺 The BFS code we have seen 􀁻 find outs if there exist a path from a vertex s to a vertex v 􀁻 prints the vertices of a 阅读全文
posted @ 2016-03-16 03:34 流白 阅读(625) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/word-ladder-ii/ Given two words (beginWord and endWord), and a dictionary's word list, find all shortest transformation 阅读全文
posted @ 2016-03-16 01:14 流白 阅读(393) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/word-ladder/ Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transfor 阅读全文
posted @ 2016-03-15 09:39 流白 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-03-13 13:03 流白 阅读(125) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/ Follow up for problem "Populating Next Right Pointers in Each Node". Wha 阅读全文
posted @ 2016-03-13 05:11 流白 阅读(173) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/binary-tree-right-side-view/ Given a binary tree, imagine yourself standing on the right side of it, return the values o 阅读全文
posted @ 2016-03-12 23:56 流白 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页