自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(38)
  • 资源 (1)
  • 收藏
  • 关注

原创 Pagerank算法(一)

断断续续做了将近两年的用户群体性作弊检测,一直想开个专栏好好总结沉淀下,一般来说这叫技术积累。下午恰好不忙,外面雪花飞舞,正适合文人骚客舞文弄墨,如此时光,甚好。甚好。Pagerank算法号称机器学习领域十大算法之一,使得当年名不见经传的Google一跃成为世界第一的搜索引擎,可见其牛逼之处。我们先回顾下搜索引擎的历史,从当年遇到的难题来切入,聊一聊Pagerank算法诞生的背景。搜...

2014-08-20 23:51:04 146

原创 Leetcode【60】: Permutation Sequence

题目

2014-08-20 23:50:31 83

原创 Leetcode【63】:Unique Paths II

题目

2014-08-20 23:50:30 89

原创 Leetcode【59】:Spiral Matrix II

题目

2014-08-20 23:50:04 91

原创 leetcode【58】:Length of Last Word

题目

2014-08-20 23:49:33 61

原创 Leetcode【57】:Insert Interval

题目

2014-08-20 23:49:11 62

原创 Leetocode【50】:Pow(x, n)

题目

2014-08-20 23:45:30 67

原创 Leetcode【52】:N-Queens II

题目

2014-08-20 23:44:58 68

原创 Leetcode【49】:Anagrams

题目

2014-08-20 23:44:53 58

原创 Leetcode【48】:Rotate Image

题目

2014-08-19 14:32:09 71

原创 Leetcode【46】:Permutations

题目

2014-08-19 14:31:08 74

原创 Leetcode【45】:Jump Game II

题目

2014-08-19 14:29:59 58

原创 Leetcode【47】:Permutations II

题目

2014-08-19 14:29:48 76

原创 Leetcode【43】:Multiply Strings

题目

2014-08-19 14:28:48 65

原创 Leetcode【42】:Trapping Rain Water

题目

2014-08-19 14:28:15 84

原创 Leetcode【41】:Trapping Rain Water

题目

2014-08-19 14:27:52 63

原创 Leetcode【44】:Wildcard Matching

题目

2014-08-19 14:27:24 72

原创 Leetcode【30】:Next Permutation

题目:

2014-08-19 14:16:55 226

原创 Leetcode【29】:Substring with Concatenation of All Words

题目:

2014-08-19 14:15:57 277

原创 Leetcode【28】:Divide Two Integers

题目:不用乘除和取模运算实现两个整数的除法。分析:不用

2014-08-18 12:53:47 316

原创 Leetcode【27】:Implement strStr

题目:实现strStr函数,给定2个字符串,返回

2014-08-18 00:33:57 214

原创 Leetcode【26】:Remove Element

题目:给定一个sorted数组,删除数组中等于element的元素。分析:和25题类似,25题是

2014-08-18 00:23:27 265

原创 Leetcode【25】:Remove Duplicates from Sorted Array

题目:给定一个sorted数组,删除其中

2014-08-18 00:20:04 170

原创 Leetcode【24】:Reverse Nodes in k-Group

题目:是23题2个结点一翻转的扩展,给一个链表,

2014-08-17 23:54:39 270

原创 Leetcode【23】:Swap Nodes in Pairs

题目:给定一个链表,从头翻转2个相邻结点。比如1->2->3->4->5->6->7,返回2->1-

2014-08-17 19:57:36 290

原创 Leetcode【22】:Merge K sorted lists

题目:合并K个已排序链表。

2014-08-17 19:53:03 241

原创 Leetcode【21】:Generate Praentheses

题目:给定一个整数,求能生成的合法的括号配对串。如给了个3,凡

2014-08-17 19:45:26 257

原创 Leetcode【20】:Valid Parentheses

题目:给定一个有()[]{}构成的string

2014-08-17 12:39:38 182

原创 Leetcode【19】:Remove Nth Node From End of List

题目:删除一个链表的倒数第N个结点,即

2014-08-17 12:27:38 214

原创 Leetcode【18】:Letter Combinations

题目:给一个数字串,对应与

2014-08-17 12:24:02 271

原创 Leetcode【17】:4Sum

题目:给一个数组,找出其中的4个数字等于target。和3sum没什么区别吧,加

2014-08-17 10:36:30 206

原创 Leetcode【16】:3Sum Closest

题目:和上题思路类似,但是细节

2014-08-17 10:05:23 240

原创 Leetcode【15】:3Sum

题目:给定一个数组,求三个数字之和等于0的

2014-08-17 00:23:49 258

原创 Leetcode【14】:Longest Conmon Prefix

题目:求解一个string数组各元素的公共前缀子串。1。

2014-06-27 08:53:06 191

原创 Leetcode【13】:Roman to Integer

题目:是12题的逆向,给难度不大。

2014-06-26 20:47:07 338

原创 Leetcode【12】:Inter to Roman

题目:把一个1~3999的int转换成罗马数字写法(返回string)。

2014-06-26 17:09:58 268

原创 Leetcode【11】:Container With Most Water

题目:

2014-06-26 17:04:37 257

原创 Leetcode【1】:Two Sum

问题https://leetcode.com/problems/two-sum/Given an array of integers, returnindicesof the two numbers such that they add up to a specific target.You may assume that each input would haveexactly...

2014-06-06 08:15:32 345

空空如也

空空如也

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

TA关注的人

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