Excel简介 一个excel文件就是一个工作簿workbook,一个工作簿中可以创建多张工作表sheet,而一个工作表中包含多个单元格Cell,这些单元格都是由列(Column)行(Row)组成,列用大写英文字母表示,从A开始到Z共26列,然后再从AA到AZ又26列,再从BA到BZ再26列以此类推 ...
分类:
其他好文 时间:
2016-10-03 23:42:27
阅读次数:
391
直接写作vector<vector<int> > vec在VC++6.0下编译不过改做: typedef std::vector<int> ROW; std::vector<ROW> vec; vec[0][0] = 0; vec[0][1] = 1; #include <iostream>#inc ...
分类:
其他好文 时间:
2016-10-03 23:31:37
阅读次数:
185
Description Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the i-th row and j-th column. Initially we have A[i, ...
分类:
编程语言 时间:
2016-10-01 17:28:38
阅读次数:
228
#include<stdio.h> #include<string.h> #include<iostream.h> char prog[80],token[8]; char ch; int syn,p,m=0,n,row,sum=0; char *rwtab[6]={"begin","if","th ...
分类:
其他好文 时间:
2016-10-01 17:19:06
阅读次数:
139
{%blockright-content%}
<divclass="row">
<divclass="list-group">
<h4>主机列表</h4>
<ulclass="list-group"id="groups">
{%forgroupinrequest.user.userprofile.host_groups.select_related%}
<liclass="list-group-item">
{{group}}
..
分类:
Web程序 时间:
2016-10-01 06:50:32
阅读次数:
212
Description Farmer John's N cows (1 <= N <= 100,000) are lined up in a row.Each cow is labeled with a number in the range 1...K (1 <= K <=10,000) iden ...
分类:
其他好文 时间:
2016-10-01 00:01:29
阅读次数:
404
#include<stdio.h> #include<string.h> #include<iostream.h> char prog[80],token[8]; char ch; int syn,p,m=0,n,row,sum=0; char *rwtab[6]={"begin","if","th ...
分类:
其他好文 时间:
2016-09-30 20:39:10
阅读次数:
152
之前参数 col 和 row 给反了,,搞了俩天各种查资料,,问前辈,,我错了,,好蠢,, ...
分类:
其他好文 时间:
2016-09-30 12:08:31
阅读次数:
147
要求查询每个用户对应的最大样品信息,忽然想到ms sql提供过 row_number() over(partition by 列 order by 列 desc),那么oracle可能也存在, 我的表结构如下: create table NEOGOODSRULE ( ID NUMBER(22) no ...
分类:
数据库 时间:
2016-09-30 01:22:29
阅读次数:
260
119. Pascal's Triangle II Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you opt ...
分类:
其他好文 时间:
2016-09-30 01:21:21
阅读次数:
178