原题地址:https://oj.leetcode.com/problems/palindrome-partitioning/题意:Given 
a strings, partitionssuch that every substring of the partition is a 
palindrome...
                            
                            
                                分类:
编程语言   时间:
2014-05-29 18:26:15   
                                阅读次数:
334
                             
                         
                    
                        
                            
                            
                                Pig可以看做是Hadoop的客户端软件,使用Pig 
Latin语言可以实现排序、过滤、求和、分组等操作。Pig的安装步骤:一、去Pig的官方网站下载。http://pig.apache.org/releases.html#14+April%2C+2014%3A+release+0.12.1+ava...
                            
                            
                                分类:
其他好文   时间:
2014-05-28 19:08:51   
                                阅读次数:
358
                             
                         
                    
                        
                            
                            
                                回文数是指这样的数字:正读和倒读都是一样的。如:595,2332都是回文数,234不是回文数。注意:负数不是回文数Determine whether an 
integer is a palindrome. Do this without extra space.Some hints:Could ne...
                            
                            
                                分类:
其他好文   时间:
2014-05-27 23:44:17   
                                阅读次数:
459
                             
                         
                    
                        
                            
                            
                                Determine whether an integer is a palindrome. Do 
this without extra space.Some hints:Could negative integers be palindromes? (ie, 
-1)If you are thinki...
                            
                            
                                分类:
其他好文   时间:
2014-05-26 18:07:52   
                                阅读次数:
217
                             
                         
                    
                        
                            
                            
                                在成功安装Pig的基础上,本文将使用Pig对手机上网日志进行分析,具体步骤如下:
写在前面:
手机上网日志文件phone_log.txt,文件内容 及 字段说明部分截图如下
需求分析
显示每个手机号的上网流量情况。
依次完成以下步骤:
1、将Linux本地文件phone_log.txt上传到HDFS
执行命令dump C; 查看经过以上步骤处理后的...
                            
                            
                                分类:
移动开发   时间:
2014-05-25 13:00:50   
                                阅读次数:
318
                             
                         
                    
                        
                            
                            
                                A palindromic number or numeral palindrome is a 'symmetrical' number like 16461 that remains the same when its digits are reversed. In this problem you will be given two integers i j, you have to find...
                            
                            
                                分类:
其他好文   时间:
2014-05-25 07:41:08   
                                阅读次数:
253
                             
                         
                    
                        
                            
                            
                                Palindrome Partitioning
 
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "...
                            
                            
                                分类:
其他好文   时间:
2014-05-24 14:29:45   
                                阅读次数:
222
                             
                         
                    
                        
                            
                            
                                Determine whether an integer is a palindrome. 
Do this without extra space.if use recursive, like check the first dig and last 
dig, then remove them, c...
                            
                            
                                分类:
其他好文   时间:
2014-05-23 02:45:15   
                                阅读次数:
230
                             
                         
                    
                        
                            
                            
                                Problem 4: Largest palindrome product
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99.
Find the largest pal...
                            
                            
                                分类:
其他好文   时间:
2014-05-22 18:48:46   
                                阅读次数:
355
                             
                         
                    
                        
                            
                            
                                Palindrome
Time Limit: 3000MS
 
Memory Limit: 65536K
Total Submissions: 50914
 
Accepted: 17537
Description
A palindrome is a symmetrical string, that is, a string read...
                            
                            
                                分类:
其他好文   时间:
2014-05-21 06:50:05   
                                阅读次数:
281