码迷,mamicode.com
首页 >  
搜索关键字:nothing    ( 658个结果
HDU 1231 最大连续子序列 DP题解
典型的DP题目,增加一个额外要求,输出子序列的开始和结尾的数值。 增加一个记录方法,nothing special。 记录最终ans的时候,同时记录开始和结尾下标; 更新当前最大值sum的时候,更新开始节点。 const int MAX_N = 10001; long long arr[MAX_N]; int N, sta, end; long long getMaxSubs() { ...
分类:其他好文   时间:2014-08-12 22:04:14    阅读次数:320
Vertica: 基于DBMS架构的列存储数据仓库
Vertica与传统数据库系统和其他列式数据仓库系统相比的话,在性能上有比较明显的优势,在设计上有一些异同,比较适合ad-hoc查询,OLAP类型的作业。总的来说,Vertica通过列存储减少了io开销,再加上高效的压缩手段,极大节省了磁盘空间,基于此Vertica采用多备份来保证高可用性,并且多备份又能够增强查询性能。在使用和运维角度了,Vertica自带工具帮助用户做物理表的存储,能提供标准SQL接口,也兼容现有的BI、ETL工具方便作业往Vertica上迁移,而且Vertica部署对硬件没有特殊要求,...
分类:数据库   时间:2014-08-11 02:58:21    阅读次数:483
8.1.2 Template instantiation (Accelerated C++)
The C++ standard says nothing about how implementations should manage template i nstantiation, so every implementation handles instantiation in its ow...
分类:编程语言   时间:2014-08-10 10:18:20    阅读次数:300
Linux内核中常用String库函数实现
//只列举了部分常用的 char *strcpy(char *dest, const char *src) { char *tmp = dest; while ((*dest++ = *src++) != '\0') /* nothing */; return tmp; } char *strncpy(char *dest, const char *src, size_t coun...
分类:系统相关   时间:2014-08-09 23:21:59    阅读次数:524
Turn the pokers
Problem DescriptionDuring summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play po...
分类:其他好文   时间:2014-08-06 22:52:52    阅读次数:326
LeetCode "Partition List"
Nothing special. A typical list manipulation problem.class Solution {public: ListNode *partition(ListNode *head, int x) { if (!head) return ...
分类:其他好文   时间:2014-08-03 07:50:15    阅读次数:214
开源数据库 Sharding 技术 (Share Nothing)
开源数据库 Sharding 技术 (Share Nothing)介绍。
分类:数据库   时间:2014-07-31 15:57:36    阅读次数:416
VBA——获取字体列表
Sub getFont()     Set FontList = Application.CommandBars("Formatting").FindControl(Id:=1728)     If FontList Is Nothing Then         Set TempBar = Application.CommandBars.Add         Set FontList...
分类:其他好文   时间:2014-07-29 18:12:02    阅读次数:295
HDU 1325 Is It A Tree?
Problem DescriptionA tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by dire...
分类:其他好文   时间:2014-07-29 14:00:18    阅读次数:255
HDU4869:Turn the pokers(费马小定理+快速幂)
Problem Description During summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play poker. But she hated the traditional gameplay. S...
分类:其他好文   时间:2014-07-23 16:36:51    阅读次数:304
658条   上一页 1 ... 62 63 64 65 66 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!