[leetcode]Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2....
分类:
其他好文 时间:
2014-09-30 11:49:49
阅读次数:
115
whether-constructor-can-call-virtual-function
分类:
其他好文 时间:
2014-09-29 13:48:40
阅读次数:
167
原题地址:https://oj.leetcode.com/problems/symmetric-tree/题意:判断二叉树是否为对称的。Given a binary tree, check whether it is a mirror of itself (ie, symmetric around ...
分类:
编程语言 时间:
2014-09-29 03:48:56
阅读次数:
195
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ 2 2
/ \ / 3 4 4 3
But the f...
分类:
其他好文 时间:
2014-09-28 20:10:56
阅读次数:
178
Point-In-Polygon Algorithm — Determining Whether A Point Is Inside A Complex Polygon© 1998,2006,2007 Darel Rex Finley. This complete article, unmodifi...
分类:
其他好文 时间:
2014-09-27 21:34:40
阅读次数:
290
Palindrome NumberTotal Accepted:19369Total Submissions:66673My SubmissionsDetermine whether an integer is a palindrome. Do this without extra space.推断...
分类:
其他好文 时间:
2014-09-25 14:43:19
阅读次数:
137
Interleaving String
Total Accepted: 15409 Total
Submissions: 79580My Submissions
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = ...
分类:
其他好文 时间:
2014-09-21 23:59:11
阅读次数:
241
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", retur...
分类:
其他好文 时间:
2014-09-20 13:29:18
阅读次数:
178
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:
其他好文 时间:
2014-09-19 05:31:35
阅读次数:
211
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-09-11 20:53:22
阅读次数:
247