Find the contiguous subarray within an array 
(containing at least one number) which has the largest sum.For example, given 
the array[?2,1,?3,4,?1,2,1,...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 08:59:38   
                                阅读次数:
235
                             
                    
                        
                            
                            
                                原题地址:https://oj.leetcode.com/problems/merge-k-sorted-lists/题意:Mergeksorted 
linked lists and return it as one sorted list. Analyze and describe its com...
                            
                            
                                分类:
编程语言   时间:
2014-06-11 21:57:07   
                                阅读次数:
399
                             
                    
                        
                            
                            
                                在c/java中,拥有块级作用域的概念,大括号内就是一个块级作用域,在块级作用域内声明的变量,块以外不可见。C语音的块级作用域示例如下:int one = 
1,two = 2;if(one < two){ int temp = 0; temp = one; one = two; ...
                            
                            
                                分类:
编程语言   时间:
2014-06-11 12:33:38   
                                阅读次数:
258
                             
                    
                        
                            
                            
                                原题地址:https://oj.leetcode.com/problems/plus-one/题意:Given 
a non-negative number represented as an array of digits, plus one to the 
number.The digits are...
                            
                            
                                分类:
编程语言   时间:
2014-06-11 11:25:27   
                                阅读次数:
304
                             
                    
                        
                            
                            
                                基于DOJO组件式开发写了几个DEMO练练手,仅供参考。 1.下滑菜单式容器 one fish one 
fish one fish one fish one fish one fish one fish ...
                            
                            
                                分类:
其他好文   时间:
2014-06-11 09:14:16   
                                阅读次数:
215
                             
                    
                        
                            
                            
                                The gray code is a binary numeral system where 
two successive values differ in only one bit.Given a non-negative 
integernrepresenting the total number...
                            
                            
                                分类:
其他好文   时间:
2014-06-10 00:01:38   
                                阅读次数:
392
                             
                    
                        
                            
                            
                                一、自定义视图类继承View或者View的子类
All of the view classes defined in the Android framework extend View.
 Your custom view can also extend Viewdirectly,
 or you can save time by extending one of the exist...
                            
                            
                                分类:
移动开发   时间:
2014-06-08 10:11:27   
                                阅读次数:
342
                             
                    
                        
                            
                            
                                Single NumberGiven an array of integers, every 
element appearstwiceexcept for one. Find that single one.Note:Your algorithm 
should have a linear runti...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 23:44:39   
                                阅读次数:
302
                             
                    
                        
                            
                            
                                Given a non-negative number represented as an 
array of digits, plus one to the number.The digits are stored such that the most 
significant digit is at...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 16:56:28   
                                阅读次数:
188
                             
                    
                        
                            
                            
                                Problem Description
An encoding of a set of symbols is said to be immediately decodable if no code for one symbol is the prefix of a code for another symbol. We will assume for this problem that all ...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 12:57:03   
                                阅读次数:
231