写一份赏心悦目的工程文档,是很困难的事情。若想写得完善,不仅得用对工具(use the right
tools),注重文笔,还得投入大把时间,真心是一件难度颇高的事情。但,若是真写好了,也是善莫大焉:既可让人明白「为何如此设计」,即「知其然更知其所以然」;也能剥离一些琐碎的细节,让更多没那么多时间与...
分类:
数据库 时间:
2014-06-02 21:24:16
阅读次数:
486
$\bf(Lusin定理)$设$f\left( x
\right)$是可测集$E$上几乎处处有限的可测函数,则对任给$\delta > 0$,存在闭集$F \subset E$,使得$m\left(
{E\backslash F} \right) 0$,存在闭集${F_i} \subset {E_....
分类:
其他好文 时间:
2014-06-02 20:04:44
阅读次数:
262
唉,没想出来……注意到预处理的作用。还有CLJ大牛说的话:这么小的数据,想干什么都可以。SPFA预处理+DP 够经典var
f:array[0..100,0..100]of longint; a:array[0..20,0..100]of boolean;
head,next,go...
分类:
其他好文 时间:
2014-06-02 11:46:40
阅读次数:
206
感谢论坛博主@Mr|Right的文章以及他对我的帮助。在上一篇文章中已经完成了GP工具的发布,这篇文章中主要涉及到GP工具的调用。废话不多说,直接开始。系统开发的硬件配置:操作系统:Windows
8.1 专业版软件平台:ArcGIS 10.1(包括Server 10.1和Desktop 10.1)...
分类:
其他好文 时间:
2014-06-02 06:32:01
阅读次数:
381
typedef struct node//该结构体代表一个结点{ int data;
//结点的数据域 struct node *next; //结点的指针域}lnode,*linklist;
//定义一个结构体变量和指向结构体的指针//用头插法创建一个链表linklist ...
分类:
其他好文 时间:
2014-06-02 05:50:31
阅读次数:
341
递归一下
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
Li...
分类:
其他好文 时间:
2014-06-01 17:35:40
阅读次数:
406
importjava.util.Scanner;
publicclassA02{
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("请输入是否是会员(y/n):");
Stringchoice=input.next();
Syst..
分类:
编程语言 时间:
2014-06-01 16:32:26
阅读次数:
303
freemarker中的left_pad和right_pad
1、简易说明
(1)left_pad 距左边
(2)right_pad 距右边
(3)当仅仅只有一个参数时,插入的是空白;当有两个参数时,插入的是第二个参数符号;如果第二个参数的长度大于1的话,会周期性地插入该符号
2、举例说明
[${""?left_pad(8)}]
[${"E"?le...
分类:
其他好文 时间:
2014-06-01 15:30:50
阅读次数:
229
type node1=record go,next:longint;end; node2=record
l,r,mx,sum:longint;end;var i,x,y,n,q,tmp,cnt,sz,code:longint; ch,st:string;
fa:a...
分类:
其他好文 时间:
2014-06-01 11:45:18
阅读次数:
374
Caused by: java.sql.SQLException: You have an error
in your SQL syntax; check the manual that corresponds to your MySQL server
version for the right s...
分类:
数据库 时间:
2014-06-01 11:31:29
阅读次数:
371