Description
Assume the coasting is an infinite straight line. Land is in one side of coasting, sea in the other. Each small island is a point locating in the sea side. And any radar installation, l...
分类:
其他好文 时间:
2014-09-18 14:53:34
阅读次数:
213
【题目】
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given the following triangle
[
[2],
[...
分类:
其他好文 时间:
2014-09-18 11:29:23
阅读次数:
201
Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution stil...
分类:
其他好文 时间:
2014-09-18 07:30:53
阅读次数:
232
Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointe...
分类:
其他好文 时间:
2014-09-18 07:30:23
阅读次数:
150
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:
其他好文 时间:
2014-09-18 04:21:33
阅读次数:
228
function ResizePic() { $('img').each(function () { var maxWidth = 450; // 图片最大宽度 var maxHeight = 750; // 图片最大高度 var ratio = 0; // 缩放比例 var width = $(....
分类:
Web程序 时间:
2014-09-17 20:20:02
阅读次数:
289
Paul hates palindromes. He assumes that string
s is tolerable if each its character is one of the first
p letters of the English alphabet and
s doesn't contain any palindrome contiguous substring ...
分类:
其他好文 时间:
2014-09-17 18:47:02
阅读次数:
247
Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified.
You should pack your words in a greedy approach; that is,...
分类:
其他好文 时间:
2014-09-17 15:18:52
阅读次数:
201
Building designingAn architect wants to design a very high building. The building will consist of some floors, and each floor has a certain size. The....
分类:
其他好文 时间:
2014-09-17 13:32:32
阅读次数:
209
Edit Distance
Total Accepted: 14997 Total
Submissions: 59129My Submissions
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each oper...
分类:
其他好文 时间:
2014-09-16 19:01:41
阅读次数:
152