Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
与Pascal's Tr...
分类:
其他好文 时间:
2015-01-04 17:18:04
阅读次数:
169
Pascal's Triangle II Total Accepted: 19384 Total Submissions: 63446 My Submissions Question SolutionGiven an index k, return the kth row of the Pascal...
分类:
其他好文 时间:
2014-12-31 00:54:24
阅读次数:
291
Find K-th largest element in an array.NoteYou can swap elements in the arrayExampleIn array [9,3,2,4,8], the 3th largest element is 4ChallengeO(n) tim...
分类:
其他好文 时间:
2014-12-29 06:29:53
阅读次数:
116
Design an algorithm to find the kth number such that the only prime factors are 3, 5, and 7.The eligible numbers are like 3, 5, 7, 9, 15 ...ExampleIf ...
分类:
其他好文 时间:
2014-12-25 08:43:45
阅读次数:
240
超过了一半是这个数,所以排个顺,第n/2个也就是中间那个就是我们要的。。。但是我们也没必要全部排序,只要找到第n/2个就好了。。。class Solution {public: int find_kth(vector& num, int left, int right, int k) { ...
分类:
其他好文 时间:
2014-12-22 14:22:04
阅读次数:
190
Kth Largest ElementFind K-th largest element in an array.NoteYou can swap elements in the arrayExampleIn array[9,3,2,4,8], the 3th largest element is ...
分类:
其他好文 时间:
2014-12-15 15:06:10
阅读次数:
338
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?...
分类:
其他好文 时间:
2014-12-10 21:16:44
阅读次数:
201
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
public class...
分类:
其他好文 时间:
2014-12-01 22:30:11
阅读次数:
201
The kth great number
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65768/65768 K (Java/Others)
Total Submission(s): 6982 Accepted Submission(s): 2837
Problem Description
Xiao ...
分类:
其他好文 时间:
2014-11-27 23:45:30
阅读次数:
870
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
这个问题比较简单。
v...
分类:
其他好文 时间:
2014-11-26 14:23:25
阅读次数:
245