上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页
摘要: Problem:You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the q... 阅读全文
posted @ 2015-09-08 12:24 airforce 阅读(502) 评论(0) 推荐(0) 编辑
摘要: Problem:Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepe... 阅读全文
posted @ 2015-09-07 13:14 airforce 阅读(332) 评论(0) 推荐(0) 编辑
摘要: Problem: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 o... 阅读全文
posted @ 2015-09-07 12:20 airforce 阅读(354) 评论(0) 推荐(0) 编辑
摘要: Problem:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents you... 阅读全文
posted @ 2015-09-07 06:25 airforce 阅读(361) 评论(0) 推荐(0) 编辑
摘要: Problem:Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not... 阅读全文
posted @ 2015-09-07 04:38 airforce 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Problem:Divide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT.Analysis:The question is not har... 阅读全文
posted @ 2015-09-06 10:46 airforce 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Problem:Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra spa... 阅读全文
posted @ 2015-09-06 07:24 airforce 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Problem:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Yo... 阅读全文
posted @ 2015-09-06 06:48 airforce 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Problem:Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the... 阅读全文
posted @ 2015-09-06 05:21 airforce 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Problem:Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding ele... 阅读全文
posted @ 2015-09-05 12:03 airforce 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页