Excel中导入到oracle使用merge into 差异性更新数据库
                            
                            
                                分类:
数据库   时间:
2014-06-29 07:55:28   
                                阅读次数:
296
                             
                    
                        
                            
                            
                                在一个经过旋转后的有序数组中查找一个目标元素。
Suppose 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 1 2).
You are given a target value to search...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 13:06:31   
                                阅读次数:
261
                             
                    
                        
                            
                            
                                题目
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
方法
数组是有序的,要求创建的二叉树尽量平衡,很容易想到对数组进行二分操作,左边的数组元素是左子树,右边的数组元素是右子树。进行递归操作就可以了。
	TreeNode...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 11:06:46   
                                阅读次数:
257
                             
                    
                        
                            
                            
                                【题目】
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
【题意】
给定一个已排序的数组(不存在重复元素),将它转换成一棵平衡二叉搜索树。
【思路】
由于平衡二叉树要求左右子树的高度差绝对值相遇等于1,也就是说左右子树尽可能包含相同数目节点。
则使用二分法来解本题即可。...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 11:03:31   
                                阅读次数:
246
                             
                    
                        
                            
                            
                                ORACLE数据库,MERGE INTO语句,经常会出现  ORA-30926: unable to get a stable set of rows in the source tables  报错解决...
                            
                            
                                分类:
数据库   时间:
2014-06-20 10:34:09   
                                阅读次数:
350
                             
                    
                        
                            
                            
                                题目
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
方法
和有序数组的思想基本一样,将链表进行二分。
	TreeNode getBST(ListNode head, int len) {
		i...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 09:46:33   
                                阅读次数:
267
                             
                    
                        
                            
                            
                                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./** * Def...
                            
                            
                                分类:
其他好文   时间:
2014-06-11 22:56:31   
                                阅读次数:
257
                             
                    
                        
                            
                            
                                Given an array where elements are sorted in 
ascending order, convert it to a height balanced BST./** * Definition for binary 
tree * public class TreeN...
                            
                            
                                分类:
其他好文   时间:
2014-06-11 21:58:10   
                                阅读次数:
300
                             
                    
                        
                            
                            
                                【题目】
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
【题意】
将一个有序链表转换成平衡二叉树
【思路】
思路跟Convert Sorted Array to Binary Search Tree完全一样...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 16:20:05   
                                阅读次数:
287
                             
                    
                        
                            
                            
                                Given a sorted array, remove the duplicates in 
place such that each element appear only once and return the new length.Do not 
allocate extra space for...
                            
                            
                                分类:
其他好文   时间:
2014-06-06 06:53:19   
                                阅读次数:
347