Determine whether an integer is a palindrome. Do this without extra space.Notes:1) Negative number is notpalindrome.2) Compare from head to tail, cons...
分类:
其他好文 时间:
2014-11-08 16:43:57
阅读次数:
124
Problem H: Partitioning by Palindromes
We say a sequence of characters is a palindrome if it is the same written forwards and backwards. For example, 'racecar' is a palindrome, but 'fastcar' is not...
分类:
数据库 时间:
2014-11-08 15:16:07
阅读次数:
150
一台mysql服务器,机器意外重启后,N个表报错,想必你已经知道库的引擎是myisam的了,太悲催,太蛋碎了,先看看报错信息:mysql>descPARTITION_KEYS;
ERROR130(HY000):Incorrectfileformat‘PARTITION_KEYS‘
mysql>checktablePARTITION_KEYS;
+-------------------------+..
分类:
数据库 时间:
2014-11-07 19:22:22
阅读次数:
255
先来看看几个XIV中最基本的概念:PartitionsThefundamentalbuildingblockofalogicalvolumeisknownasapartition.Partition是1MB(1024KB),包括aprimarycopy或者secondarycopyofdata,每个Partition都对应一个单独的物理磁盘的某个区域,存储管理员不知道也无法控制一个Partiti..
分类:
其他好文 时间:
2014-11-07 15:02:41
阅读次数:
185
Oracle可以用SYS_CONNECT_BY_PATH字符串聚合函数:
SELECT LTRIM(MAX(SYS_CONNECT_BY_PATH(productname, ', ')), ', ') AS productname
FROM(
SELECT '1' as id, productname,
ROW_NUMBER() OVER (PARTITION BY '1'...
分类:
数据库 时间:
2014-11-07 14:54:39
阅读次数:
310
1 class Solution { 2 public: 3 bool isPalindrome(int x) { 4 int r=0,init=x; 5 if(init==0) return true; 6 if(init<0) ...
分类:
其他好文 时间:
2014-11-07 14:21:40
阅读次数:
162
class Solution {
public:
bool isPalindrome2(int x) {//二进制
int num=1,len=1,t=x>>1;
while(t){
num<>=1;
len++;
}
len/=2;
while(len--){
if((num&x==0)&&(x&1)!=0){
re...
分类:
其他好文 时间:
2014-11-06 17:39:21
阅读次数:
333
MYSQL-实现ORACLE- row_number() over(partition by ) 分组排序功能 由于MYSQL没有提供类似ORACLE中OVER()这样丰富的分析函数. 所以在MYSQL里需要实现这样的功能,我们只能用一些灵活的办法:1.首先我们来创建实例数据:drop table....
分类:
数据库 时间:
2014-11-06 14:44:57
阅读次数:
306
Given a linked list and a valuex, partition it such that all nodes less thanxcome before nodes greater than or equal tox.You should preserve the origi...
分类:
其他好文 时间:
2014-11-06 14:30:36
阅读次数:
151