http://blog.csdn.net/yuzhic/article/details/1896878http://blog.csdn.net/macle2010/article/details/5980965该命令使用一条语句从一个或者多个数据源中完成对表的更新和插入数据. 
ORACLE 9i 中...
                            
                            
                                分类:
数据库   时间:
2014-05-27 02:01:59   
                                阅读次数:
374
                             
                    
                        
                            
                            
                                数据排序方法  原地排序sort()方法   复制排序sorted()函数
                            
                            
                                分类:
编程语言   时间:
2014-05-24 06:40:44   
                                阅读次数:
215
                             
                    
                        
                            
                            
                                Remove Duplicates from Sorted Array IIFollow up 
for "Remove Duplicates":What if duplicates are allowed at mosttwice?For 
example,Given sorted array A =...
                            
                            
                                分类:
其他好文   时间:
2014-05-23 10:23:40   
                                阅读次数:
250
                             
                    
                        
                            
                            
                                戳我去解题Given an array where elements are sorted in 
ascending order, convert it to a height balanced 
BST.分析:因为BST中序序列是升序的,所以中序遍历序列最中间的元素一定是根节点,然后左右递归构建二叉...
                            
                            
                                分类:
其他好文   时间:
2014-05-20 11:38:16   
                                阅读次数:
233
                             
                    
                        
                            
                            
                                戳我去解题Merge two sorted linked lists and return it as 
a new list. The new list should be made by splicing together the nodes of the 
first two lists.分析:直...
                            
                            
                                分类:
其他好文   时间:
2014-05-20 08:52:09   
                                阅读次数:
277
                             
                    
                        
                            
                            
                                题目链接 You are given two linked lists representing 
two non-negative numbers. The digits are stored in reverse order and each of 
their nodes contain a si...
                            
                            
                                分类:
其他好文   时间:
2014-05-19 13:53:32   
                                阅读次数:
296
                             
                    
                        
                            
                            
                                Search in Rotated Sorted Array ISuppose a 
sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 
6 7 might become 4 5 6 7 0 ...
                            
                            
                                分类:
其他好文   时间:
2014-05-19 12:30:00   
                                阅读次数:
388
                             
                    
                        
                            
                            
                                Remove Duplicates from Sorted Array IGiven a 
sorted array, remove the duplicates in place such that each element appear only 
once and return the new l...
                            
                            
                                分类:
其他好文   时间:
2014-05-19 12:10:41   
                                阅读次数:
329
                             
                    
                        
                            
                            
                                You are given two linked lists representing two 
non-negative numbers. The digits are stored in reverse order and each of their 
nodes contain a single ...
                            
                            
                                分类:
其他好文   时间:
2014-05-19 12:05:23   
                                阅读次数:
386
                             
                    
                        
                            
                            
                                本来在博客上看到用python写的归并排序的程序,然后自己跟着他写了一下,结果发现是错的,不得不自己操作。而自己对python不是很了解所以就变百度边写,终于在花了半个小时之后就写好了。
def merge(a, first, end, temp):
	if first < end:
		mid = (first+end)//2
		merge(a, first, mid, temp) #前半部...
                            
                            
                                分类:
编程语言   时间:
2014-05-18 09:16:53   
                                阅读次数:
296