码迷,mamicode.com
首页 >  
搜索关键字:palindrome partition    ( 4210个结果
mount img
yanzhihong@yzh:~/nook3$ file noogie.img noogie.img: x86 boot sector; partition 1: ID=0xc, active, starthead 1, startsector 32, 155616 sectors, code of...
分类:其他好文   时间:2014-05-16 08:31:35    阅读次数:236
待整理细化的点
Row_number配合over(partition by xx order by xx) 与 Group by 的区别, = order + group?SqlBulkCopyGuidance Automation Toolkit 2010 Reference
分类:其他好文   时间:2014-05-15 20:39:55    阅读次数:249
[LeetCode]Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space....
分类:其他好文   时间:2014-05-15 14:38:59    阅读次数:278
第七章 快速排序
快速排序最坏情况下时间复杂度是O(n*n),但是它平均时间复杂度是O(N*logn),并且常数因子很小,可实现就地排序,所以被作为内排序的常用排序方法. #include using namespace std; void swap(int &i,int &j) { int temp=i; i=j; j=temp; } int partition(int *vector...
分类:其他好文   时间:2014-05-15 06:05:35    阅读次数:254
Ubuntu /boot paritiion clean up
1. Check the /boot partition size to decide if need clean up $ df 2. Check the current used Linux kernel $ uname -r 3. Check all Linux kernel to decide which ones to be removed $ ls /boot...
分类:其他好文   时间:2014-05-15 03:24:16    阅读次数:235
LeetCode 009 Palindrome Number
【题目】 Determine whether an integer is a palindrome. Do this without extra space. 【题意】 题意判断一个整数是否是回文数 注意一下几点: 1. 不能用额外的空间 2. 负数不是回文数...
分类:其他好文   时间:2014-05-14 20:31:10    阅读次数:298
OpenStack_Swift源码分析——Ring基本原理及一致性Hash算法
1、Ring的基本概念 Ring是swfit中最重要的组件,用于记录存储对象与物理位置之间的映射关系,当用户需要对Account、Container、Object操作时,就需要查询对应的Ring文件(Account、Container、Object都有自己对应的Ring),Ring 使用Region(最近几个版本中新加入的)、Zone、Device、Partition和Replica来维护这些信...
分类:其他好文   时间:2014-05-14 15:22:15    阅读次数:1213
leetcode题目:Palindrome Partitioning 和Palindrome Partitioning II
题目一: 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 = "aab", Return [ ...
分类:其他好文   时间:2014-05-14 15:10:01    阅读次数:293
Hive sql 语法解读
一、 创建表      在官方的wiki里,example是这样的: Sql代码   CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name    [(col_name data_type [COMMENT col_comment], ...)]    [COMMENT table_comment]    [PARTITION...
分类:数据库   时间:2014-05-14 14:50:27    阅读次数:463
阿里云服务器挂载新数据盘
首先查看数据盘的信息,找到新添加的数据盘,如/dev/xvdbfdisk -l然后将数据盘分区fdisk /dev/xvdb#然后根据提示#输入 n ,表示设定新的分区#输入 p ,表示Primary partition(主分区)#输入 1 ,表示只分1个区。再次查看数据盘的信息,便会发现数据盘分区...
分类:其他好文   时间:2014-05-14 06:57:25    阅读次数:256
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!