上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: 标题:Climbing Stairs通过率:34%难度:简单You are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or 2 steps. In how ma... 阅读全文
posted @ 2014-12-17 10:40 pku_smile 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 标题:Remove Duplicates from Sorted List通过率:34.5难度:简单Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example... 阅读全文
posted @ 2014-12-15 21:58 pku_smile 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 标题:Roman to Integer通过率:34.1%难度:简单Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.这个题整体不是很难,就... 阅读全文
posted @ 2014-12-15 21:37 pku_smile 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 标题:String to Integer (atoi)通过率:13.8难度:简单Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a... 阅读全文
posted @ 2014-12-12 23:09 pku_smile 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 标题:Reverse Integer正确率:34.8%难度简单Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321Have you thought about this?Here... 阅读全文
posted @ 2014-12-12 22:56 pku_smile 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 标题:Single Number II正确率:34%难度:中等Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm sh... 阅读全文
posted @ 2014-12-12 10:51 pku_smile 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 标题:Same Tree通过率:42%难度简单Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are st... 阅读全文
posted @ 2014-12-11 20:17 pku_smile 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 网上对于全分布式的介绍也是一堆!!要么是假的!要么是1.x版本的全分布式!我实在是无力吐槽,很多博客大牛转载的或者“原创”的我看完我都问他们自己。。。他们自己实现了吗?以下是我的安装过程:如有问题随时联系我 E-mail:yanghg@pku.edu.cn此次Hadoop分布式共搭建了三个虚拟机,分... 阅读全文
posted @ 2014-12-11 18:31 pku_smile 阅读(362) 评论(0) 推荐(0) 编辑
摘要: 网上hadoop单节点安装文章真是一搜一大堆,可以这样说,全是垃圾,那些博主也不知道自己安装过没有。。反正就一堆的copy,我实在看不下去了。必须把我总结的写出来,如果你有任何问题随时联系我!E-Mail: yanghg@pku.edu.cn下面我以2.2.0为例子!注意这是单节点!!伪分布式!!不... 阅读全文
posted @ 2014-12-11 18:27 pku_smile 阅读(696) 评论(0) 推荐(0) 编辑
摘要: 标题:Linked List Cycle II通过率30%难度中等看升级版前还是先看下Linked List Cycle I看完第一个版本对于第二个版本会有一定的帮助,先了解环的结构。然后看下面的图片:假设快慢指针交汇处为为分红圈那个,环的起始点为k,那么:1、快指针走的路程是慢指针走的两倍。2、慢... 阅读全文
posted @ 2014-12-11 18:13 pku_smile 阅读(129) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页