自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

负雪明烛

算法题博主,7 年写了 1000 多篇 LeetCode 题解,致力于帮助更多人拿到满意的 Offer!

  • 博客(16)
  • 收藏
  • 关注

原创 【LeetCode】996. Number of Squareful Arrays 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法回溯法日期题目地址:https://leetcode.com/problems/number-of-squareful-arrays/题目描述Given an array A of non-negative integers, the array is...

2019-02-28 10:45:37 1054

原创 【LeetCode】457. Circular Array Loop 环形数组是否存在循环 解题报告(Python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法快慢指针日期题目地址:https://leetcode.com/problems/circular-array-loop/题目描述You are given a circular array nums of positive and negative ...

2019-02-27 10:58:12 1634 2

原创 【LeetCode】1001. Grid Illumination 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法哈希日期题目地址:https://leetcode.com/problems/available-captures-for-rook/题目描述On a N x N grid of cells, each cell (x, y) with 0 <=...

2019-02-24 21:53:31 863

原创 【LeetCode】999. Available Captures for Rook 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法暴力遍历日期题目地址:https://leetcode.com/problems/available-captures-for-rook/题目描述On an 8 x 8 chessboard, there is one white rook. The...

2019-02-24 16:02:03 1401

原创 【LeetCode】998. Maximum Binary Tree II 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法递归日期题目地址:https://leetcode.com/problems/maximum-binary-tree-ii/题目描述We are given the root node of a maximum tree: a tree where e...

2019-02-24 15:51:02 881

原创 【LeetCode】997. Find the Town Judge 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法度日期题目地址:https://leetcode.com/problems/rotting-oranges/题目描述In a town, there are N people labelled from 1 to N. There is a rumo...

2019-02-24 15:32:26 1600

原创 设计owllook网络小说推荐系统

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录数据推荐算法协同过滤基于流行度的推荐基于用户标签相似度的推荐评价指标算法对比推荐10本书籍推荐20本书籍推荐解释探讨结论本文记录了我对owllook.net这一网络小说搜索引擎的推荐系统的分析与设计过程。这个项目是开源项目,地址在owllook repo,目前已经积累了一定的数据...

2019-02-23 23:25:38 6634 1

原创 【LeetCode】994. Rotting Oranges 解题报告(Python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法BFS日期题目地址:https://leetcode.com/problems/rotting-oranges/题目描述n a given grid, each cell can have one of three values:the value...

2019-02-21 21:02:22 3792

原创 【LeetCode】993. Cousins in Binary Tree 解题报告(C++ & python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法DFSBFS日期题目地址:https://leetcode.com/problems/cousins-in-binary-tree/题目描述In a binary tree, the root node is at depth 0, and child...

2019-02-21 20:27:28 2448

原创 【LeetCode】991. Broken Calculator 解题报告(Python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法日期题目地址:https://leetcode.com/problems/broken-calculator/题目描述On a broken calculator that has a number showing on its display, we...

2019-02-21 16:59:53 1435

原创 【LeetCode】990. Satisfiability of Equality Equations 解题报告(C++ & python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法DFS并查集日期题目地址:https://leetcode.com/problems/satisfiability-of-equality-equations/题目描述Given an array equations of strings that r...

2019-02-21 15:57:11 1170 3

原创 【LeetCode】989. Add to Array-Form of Integer 数组形式的整数加法

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法数组转整数再转数组模拟加法日期题目地址:https://leetcode.com/problems/add-to-array-form-of-integer/题目描述For a non-negative integer X, the array-for...

2019-02-21 15:16:22 1119

原创 【LeetCode】988. Smallest String Starting From Leaf 解题报告(C++ & Python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法DFSBFS日期题目地址:https://leetcode.com/problems/smallest-string-starting-from-leaf/题目描述Given the root of a binary tree, each node h...

2019-02-20 23:32:00 1281

原创 【LeetCode】987. Vertical Order Traversal of a Binary Tree 解题报告(C++ & Python)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法DFSBFS日期题目地址:https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree/题目描述Given a binary tree, return the verti...

2019-02-20 22:52:54 3387

原创 【LeetCode】986. Interval List Intersections 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法双指针日期题目地址:https://leetcode.com/problems/interval-list-intersections/题目描述Given two lists of closed intervals, each list of inte...

2019-02-19 19:45:39 2176

原创 【LeetCode】985. Sum of Even Numbers After Queries 解题报告(C++)

作者: 负雪明烛id: fuxuemingzhu个人博客: http://fuxuemingzhu.cn/目录题目描述题目大意解题方法暴力找规律日期题目地址:https://leetcode.com/problems/sum-of-even-numbers-after-queries/题目描述We have an array A of integers, and an array q...

2019-02-19 15:56:03 1016

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除