A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diag...
分类:
其他好文 时间:
2014-08-15 09:32:37
阅读次数:
200
//给定一个由字符组成的矩阵,求出它的面积最小的覆盖矩阵
//可以求出每一行的最小覆盖子串的长度,只要对这些长度求最小公倍数,就可以获得最小覆盖矩阵的宽度。
//同理,求出每一列的最小覆盖子串的长度,再求最小公倍数,就可以获得最小覆盖矩阵的高度了。
# include
# include
# include
using namespace std;
char a[10010][100];
i...
分类:
其他好文 时间:
2014-08-15 00:01:06
阅读次数:
187
Infobright作为开源的MySQL数据仓库解决方案,引入了列存储方案,高强度的数据压缩,优化的统计计算等内容,本文是摘抄了infobright论文里最重要的设计点,KnowledgeGird是infobright设计上的核心。
brighthouse是一个面向列的数据仓库,在列存储和压缩数据方面,数据压缩比达到10:1。其核心Knowledge Grid(知识网格)层,即一个能自动调节、所存出具特别小的元数据层,替代了索引的功能,提供了数据过滤、统计信息表达、实际数据位置信息等内容,让brightho...
分类:
其他好文 时间:
2014-08-14 23:53:56
阅读次数:
465
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path....
分类:
其他好文 时间:
2014-08-14 20:50:59
阅读次数:
192
Ext.override(Ext.grid.GridView, { renderBody : function() { var markup = this.renderRows(); if (markup == "") markup = " "; return this.templates...
分类:
其他好文 时间:
2014-08-14 19:25:59
阅读次数:
190
Tree介绍树形结构,是程序开发,不可缺少的组件之一。ExtJs中的树,功能强大美观实用。功能齐全,拖拉,排序,异步加载等等。在ExtJs4中Tree和Grid具有相同的父类,因此Grid具有的特性和插件在Tree上也能用。1.ExtJs4之Grid详细2.ExtJs4之TreePanel简单的Tr...
分类:
Web程序 时间:
2014-08-14 16:31:58
阅读次数:
327
///获取Mysql里面的数据 protected void Button1_Click(object sender, EventArgs e) { ///实例化强类型的数据集 macs_20140707TableAdapter...
分类:
数据库 时间:
2014-08-14 15:59:48
阅读次数:
171
Qracle11gduplicate功能不用备份源库,通过网络复制出standby库1.在standby上grid用户配置listener注意是指定oracle用户的家目录:监听状态:[grid@dg~]$lsnrctlLSNRCTLforLinux:Version11.2.0.4.0-Productionon19-MAY-201418:46:15Copyright(c)1991,2013,Oracle.Allrightsrese..
分类:
数据库 时间:
2014-08-14 03:54:08
阅读次数:
492
Problem Description
Continuous Same Game is a simple game played on a grid of colored blocks. Groups of two or more connected (orthogonally, not diagonally) blocks that are the same color may be remo...
分类:
其他好文 时间:
2014-08-13 22:29:17
阅读次数:
288
poj2185 Milking Grid(KMP运用)...
分类:
其他好文 时间:
2014-08-13 18:59:47
阅读次数:
123