剑指offer
crazytom1988
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
剑指offer 12_StringPathInMatrix
https://github.com/zhulintao/CodingInterviewChinese2/blob/master/12_StringPathInMatrix/StringPathInMatrix.cpp 回溯法+floodfill原创 2019-09-21 15:57:02 · 138 阅读 · 0 评论 -
剑指offer 15_NumberOf1InBinary
https://github.com/zhulintao/CodingInterviewChinese2/tree/master/15_NumberOf1InBinary //这种解法在n是负数是会无限循环 int NumberOf1_Solution1(int n) { int count = 0; while (n) { if (n & 1)...原创 2019-09-21 16:39:24 · 96 阅读 · 0 评论 -
剑指offer 试题52 两个链表的第一个公共节点
https://github.com/zhulintao/CodingInterviewChinese2/blob/master/52_FirstCommonNodesInLists/FirstCommonNodesInLists.cpp原创 2019-09-30 19:58:58 · 109 阅读 · 0 评论 -
leetcode 103. 二叉树的锯齿形层次遍历
https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal/ 剑指offer原题 class Solution { public: vector<vector<int>> zigzagLevelOrder(TreeNode* root) { vector&l...原创 2019-10-09 15:13:32 · 116 阅读 · 0 评论
分享