之前使用CentOS安装过ubuntu,今天安装一次CentOS6.6,要复杂一些,列文备忘。1、安装EasyBCD,下载CentOS-6.6-x86_64-bin-DVD1.iso、CentOS-6.6-x86_64-bin-DVD2.iso2、安装EaseUS Partition Maste.....
分类:
其他好文 时间:
2015-01-12 10:34:09
阅读次数:
164
Determine whether an integer is a palindrome. Do this without extra space.
click to show spoilers.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of convertin...
分类:
其他好文 时间:
2015-01-12 00:25:55
阅读次数:
197
表分区http://www.cnblogs.com/ggjucheng/archive/2013/01/03/2843393.html
http://wenku.baidu.com/link?url=SE-XAChaTsqht6ddSHI57dV4FfD0pL4h_pXt9vXxU5sA71CkAqihtbzdRuDWexNfv8rvYXs9rv17C8O5g_jK6VrbGVqoJetQb...
分类:
数据库 时间:
2015-01-11 01:01:49
阅读次数:
389
1. Add Partition ToolPartitions act as unit of parallelism. Messages of a single topic are distributed to multiple partitions that can be stored and s...
分类:
其他好文 时间:
2015-01-10 23:37:04
阅读次数:
440
题目: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 or...
分类:
编程语言 时间:
2015-01-10 12:25:37
阅读次数:
204
11.2.2.2 测试列表
我们将要测试的函数是广义(generalized,是百度翻译的,不知道到底是什么意思)的版本,输出多字组成的名字;不同的是,函数结果返回名字,而不是打印。结果是有两个列表的元组:一个包含多字的名字,另一个包含单个词的名字。在函数的术语中,这个操作称为分区(partitioning),我们使用来自标准的F# 库中的List.partition 函数,很容易就能实现...
分类:
其他好文 时间:
2015-01-09 17:30:49
阅读次数:
153
1.查看回收站中的表:select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin;2.恢复表:flashback table(表名) to before drop或f...
分类:
数据库 时间:
2015-01-09 12:18:04
阅读次数:
204
硬盘分区及挂载操作步骤:1. 查看未挂载的硬盘(名称为/dev/xvdb)# fdisk -lDisk /dev/xvdb doesn't contain a valid partition table2.创建分区# fdisk /dev/xvdb...输入nCommand (m for help)...
分类:
其他好文 时间:
2015-01-08 20:02:09
阅读次数:
187
Determine whether an integer is a palindrome. Do this without extra space.
class Solution
{
public:
bool isPalindrome(int x)
{
if(x < 0)
return false;
int org = ...
分类:
其他好文 时间:
2015-01-08 18:12:09
阅读次数:
124
https://oj.leetcode.com/problems/palindrome-partitioning/http://blog.csdn.net/linhuanmars/article/details/22777711publicclassSolution{
publicList<List<String>>partition(Strings){
//NP
List<List<String>>result=newArrayList<>()..
分类:
其他好文 时间:
2015-01-08 15:30:19
阅读次数:
111