LeetCode
ReyYuan
我是编程爱好者中的健身爱好者~~~
展开
-
LeetCode_02_BinarySearch笔记总结
摘要今天主要涉及到的二分查找的一些变型形式,比如在树上,其中涉及到好些知识点,完全二叉树,二分搜索树,还有移位运算的原理等. 正文1. LC167. Two Sum II - Input array is sorted题目: Given an array of integers that is already sorted in ascending order, fi...原创 2018-03-07 03:59:34 · 279 阅读 · 0 评论 -
LeetCode_03_BinarySearch笔记总结
摘要今天的题涉及到一个二分的边界问题的新套路,还处理一道经典的DP问题.正文1. LC274. H-Index题目: Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researc...原创 2018-03-09 12:25:42 · 276 阅读 · 0 评论 -
LeetCode_04_BinarySearch笔记总结
摘要今天的题目也是二分查找,其中涉及到开方,找重复数,还有二分超找的一些变形,如找Peak,二分查找树问题正文1. LC69. Sqrt(x)题目: Implement int sqrt(int x). Compute and return the square root of x. x is guaranteed to be a non-negative integ...原创 2018-03-12 07:26:32 · 318 阅读 · 0 评论 -
Leetcode_01_BinarySearch_笔记总结
摘要今天的题目全部都是Binary Search,其中35, 33, 81, 153, 154很经典,也有一定的模板可寻, 一定要敲熟练. 其中针对于二分查找中while循环的参数>=问题的讲解.正文1. LC29. Divide Two Integers题目: Divide two integers without using multiplication, ...原创 2018-03-05 12:47:30 · 331 阅读 · 0 评论