码迷,mamicode.com
首页 >  
搜索关键字:format and partition disk    ( 19010个结果
oracle 数据库连接
两种方式:1.IP+SID方式 2.配置链接方式1..IP+SID方式DbHelperOracle.connectionString = string.Format(@"Data Source=(DESCRIPTION = ...
分类:数据库   时间:2014-06-04 18:20:09    阅读次数:343
Partition List
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-06-03 14:12:24    阅读次数:306
笔试算法题(54):快速排序实现之单向扫描、双向扫描(single-direction scanning, bidirectional scanning of Quick Sort)
议题:快速排序实现之一(单向遍历)分析:算法原理:主要由两部分组成,一部分是递归部分QuickSort,它将调用partition进行划分,并取得划分元素P,然后分别对P之前的部分和P 之后的部分递归调用QuickSort;另一部分是partition,选取划分元素P(随机选取数组中的一个元素,交换...
分类:其他好文   时间:2014-06-03 10:00:23    阅读次数:392
SQL总结(三)其他查询
SELECT INTO,IDENTITY,OBJECT_ID,跨库查询常用函数:Len,Format,Cast,Convert
分类:数据库   时间:2014-06-03 09:59:00    阅读次数:306
创建分区
1、为已存在表创建分区ALTER TABLE `tb_xxx` PARTITION BY LIST COLUMNS(col_id)(PARTITION p0 VALUES IN (1),PARTITION p1 VALUES IN (4),PARTITION p2 VALUES IN (5));分区...
分类:其他好文   时间:2014-06-03 09:17:37    阅读次数:246
String.Format,DateTime日期时间格式化
DateTime dt = DateTime.Now;//2010年10月4日 17点05分 string str = ""; //str = string.Format("{0:y yy yyy yyyy}", dt); //10 10 2010 2010 //str = String.Form....
分类:其他好文   时间:2014-05-31 14:36:51    阅读次数:208
<百度之星2014资格赛>Disk Schedule 报告
Disk ScheduleTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 780Accepted Submission(s): 119Problem...
分类:其他好文   时间:2014-05-31 04:25:17    阅读次数:326
C语言之函数可变参数
先上一段代码:#include#include#includeusing namespace std;void error(char* format,...){//至少要有一个参数,后边的...表示参数可变 va_list ap; int d,flag; char c, *s; ...
分类:编程语言   时间:2014-05-30 17:51:46    阅读次数:271
Palindrome Partitioning
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:其他好文   时间:2014-05-30 16:04:06    阅读次数:237
Palindrome Partitioning II
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:其他好文   时间:2014-05-30 15:13:10    阅读次数:262
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!