Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:
其他好文 时间:
2015-04-13 18:23:52
阅读次数:
105
首先,Hive 没有专门的数据存储格式,也没有为数据建立索引,用户可以非常自由的组织 Hive 中的表,只需要在创建表的时候告诉 Hive 数据中的列分隔符和行分隔符,Hive 就可以解析数据。
其次,Hive 中所有的数据都存储在 HDFS 中,Hive 中包含以下数据模型:Table,External Table,Partition,Bucket。
Hive 中的 Table 和数据库...
分类:
其他好文 时间:
2015-04-13 16:49:23
阅读次数:
103
测试使用的数据为scott/tiger模式下的emp表:我们使用JOB和SAL这两个列测试:上面语句指按照职业JOB分组(partition by job)然后在每个分组内,按照薪水(sal)进行排名。注意到并列名次,例如SLAESMAN这个职业的,有两个1250并列第一,1500就是第3名了。将R...
分类:
数据库 时间:
2015-04-12 22:30:03
阅读次数:
179
回文检测,参考http://blog.csdn.net/feliciafay/article/details/16984031使用时间复杂度和空间复杂度相对较低的动态规划法来检测,具体的做法图一 偶数个回文字符情况图二 奇数个回文字符情况核心就是如果一个子串是回文,如果分别向回文左右侧扩展一个字符相...
分类:
其他好文 时间:
2015-04-12 20:52:05
阅读次数:
125
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a canal: Pana...
分类:
其他好文 时间:
2015-04-12 17:30:50
阅读次数:
99
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of the nodes in each of...
分类:
其他好文 时间:
2015-04-12 14:49:27
阅读次数:
137
Determine whether an integer is a palindrome. Do this without extra space.Analyse:判断一个整数是否是回文数。注意负数都不是回文数。 1 class Solution { 2 public: 3 bool isP...
分类:
其他好文 时间:
2015-04-12 14:41:36
阅读次数:
124
Title :Determine whether an integer is a palindrome. Do this without extra space.思路1 : 将数字翻转,然后看是否相等。是否越界的问题,如果真是回文串是不会越界的class Solution {public: i...
分类:
其他好文 时间:
2015-04-12 11:52:10
阅读次数:
99
关于List换位置移动,一个很好的解决途径就是 使用 vector 来储存 ListNode *, 然后可以方便的计算其长度 v.size() 并且进行移动,删改等操作。注意:1. 其实vector操作和真实指针移动操作的时间差不太多。2. 还要记得判断head是否为NULL3. 在使用 v->ne...
分类:
其他好文 时间:
2015-04-12 10:33:09
阅读次数:
132