Given an input string, reverse the string word 
by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 
Class Solution{ 2 public: ....
                            
                            
                                分类:
其他好文   时间:
2014-05-23 02:59:21   
                                阅读次数:
260
                             
                         
                    
                        
                            
                            
                                Reverse digits of an integer.Example1:x = 123, 
return 321Example2:x = -123, return -321 1 class Solution { 2 public: 3 int 
reverse(int x) { 4 ...
                            
                            
                                分类:
其他好文   时间:
2014-05-22 16:26:23   
                                阅读次数:
165
                             
                         
                    
                        
                            
                            
                                Evaluate the value of an arithmetic expression 
inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an 
integer or another express...
                            
                            
                                分类:
其他好文   时间:
2014-05-22 00:49:57   
                                阅读次数:
311
                             
                         
                    
                        
                            
                            
                                Find common nodes of 2 linked list.
                            
                            
                                分类:
其他好文   时间:
2014-05-22 00:10:17   
                                阅读次数:
241
                             
                         
                    
                        
                            
                            
                                Reverse a linked list from positionmton. Do it 
in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 
2 andn= 4,return1->4->3->2->5->NULL.No...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 19:08:08   
                                阅读次数:
195
                             
                         
                    
                        
                            
                            
                                Given a sorted linked list, delete all nodes 
that have duplicate numbers, leaving onlydistinctnumbers from the original 
list.For example,Given1->2->3-...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 17:51:09   
                                阅读次数:
190
                             
                         
                    
                        
                            
                            
                                Problem Description
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the follow...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 10:55:57   
                                阅读次数:
325
                             
                         
                    
                        
                            
                            
                                1、
??
Add Two Numbers 
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 digit. Add the two num...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 10:49:10   
                                阅读次数:
221
                             
                         
                    
                        
                            
                            
                                介绍list  item倒序显示
LayoutAnimation3.java
/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file e...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 08:25:44   
                                阅读次数:
278
                             
                         
                    
                        
                            
                            
                                Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n =
 4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the fol...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 07:18:02   
                                阅读次数:
301