04 2014 档案
摘要:The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
阅读全文
摘要:Write an efficient algorithm that searches for a value in anmxnmatrix. This matrix has the following properties:Integers in each row are sorted from l...
阅读全文
摘要:Merge Sorted ArrayGiven two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that i...
阅读全文
摘要:http://oj.leetcode.com/problems/search-for-a-range/使用快速排序的原理进行查找public class Solution { public int[] searchRange(int[] A, int target) { in...
阅读全文
摘要:原文:http://bbs.eol.cn/portal.php?mod=view&aid=3718今年的校园招聘应该说是历届最大的一次,无论是腾讯,百度,网易还是其他大公司都排出了豪华阵容进行招聘,腾讯派出了600人的团队参与,可谓盛况空前。 阿里巴巴集团包括旗下子公司也要在这次校园招聘中引进1800名应届毕业生。今年毕业的大学生应该是610万,应该说这么大规模的校园招聘对目前失业率 高,金融危机中的中国是一大喜事。但是亲爱的应届毕业生们,不要以为自己的身价上涨了,几大互联网公司都来了,可以牛一把了。昨天看了Donews的新闻,看到阿里在招聘的时候使用的一种态度,超赞,如下:据 了解,
阅读全文