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...
分类:
其他好文 时间:
2014-12-21 22:02:28
阅读次数:
189
Palindrome NumberDetermine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers b...
分类:
其他好文 时间:
2014-12-21 22:00:15
阅读次数:
131
题目:
Determine whether an integer is a palindrome. Do this without extra space.
分析:
该题目来源于leetcode。回文串是一个正读和反读都一样的字符串,比如“level”或者“noon”等等就是回文串。当然整数形式的回文串也是类似的。但负数不是回文串。两种思路:
按定义来,依次比较串的首尾,直到中...
分类:
其他好文 时间:
2014-12-21 20:43:45
阅读次数:
174
自从数据库服务器从redhat4.6升级到redhat5.5之后,在使用TSM备份的时候偶尔会出现SQL2043N查看错误:[cpp] view plaincopy[db2inst1@limt~]$db2?SQL2043NSQL2043NUnabletostartachildprocessorthr...
分类:
数据库 时间:
2014-12-21 16:38:53
阅读次数:
1170
当文字的长度超过容器的边框时,若想要显示多余的内容为省略号时,我们可以这么设置.truncate { width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}注意到white-space与ov...
分类:
其他好文 时间:
2014-12-21 16:34:10
阅读次数:
159
Which type of PL/SQL construct would you use to automatically co
rrect the error resulting from a statement that was suspended due to
a space-related problem?
A. functions
B. package
C. pr...
分类:
数据库 时间:
2014-12-20 20:59:04
阅读次数:
206
1、name space使用方法一般我们为每一个namespace创建一个同名的文件夹,将这个namespace之下的所有class放到这个文件夹里面;假如我们创建一个名为:MyNamespace的namespace,和一个MyClass的类属于MyNamespace,那么首先我们要在定义MyCla...
分类:
Web程序 时间:
2014-12-20 15:24:36
阅读次数:
135
Space Elevator
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 8701
Accepted: 4135
Description
The cows are going to space! They plan to achieve orbit by b...
分类:
其他好文 时间:
2014-12-19 22:03:07
阅读次数:
181
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他好文 时间:
2014-12-19 00:21:29
阅读次数:
174
一、原题
Linked List Cycle
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
二、分析
选用两个指针扫描链表,一个速度快,一个速度慢,若两个指针相遇,说明有环。
三、...
分类:
其他好文 时间:
2014-12-18 20:44:05
阅读次数:
157