点击打开链接
求MST的最长边~
prim
#include
#include
#include
#include
#define Min(a,b) (a)<(b)?(a):(b)
using namespace std;
const int INF = 1000000000;
const int maxn = 2000 + 5;
struct pto
{...
分类:
其他好文 时间:
2014-06-11 06:45:17
阅读次数:
235
public static String sendPost(String url, String
param)throws Exception { PrintWriter out = null; BufferedReader in = null;
Stri...
分类:
其他好文 时间:
2014-06-10 09:30:00
阅读次数:
234
题目来源:《The C programming language》中的习题P27练习2-1:
编写一个程序以确定分别由signed及unsigned限定的char、short、int与long类型变量的取值范围。采用打印标准头文件中的相应值以及直接计算两种方式实现。后一种方法的实现较困难一些,因为要...
分类:
编程语言 时间:
2014-06-09 21:33:57
阅读次数:
370
头文件定义的符号常量CHAR_MIN char的最小值SCHAR_MAX signed char
最大值SCHAR_MIN signed char 最小值UCHAR_MAX unsigned char 最大值SHRT_MAX short
最大值SHRT_M...
分类:
其他好文 时间:
2014-06-09 21:26:12
阅读次数:
230
一次总结两道题,两道题目都比较基础Description:Write a function to
find the longest common prefix string amongst an array of strings.分析:
这道题目最重要的知道什么叫prefix前缀, 否则一不小心就做...
分类:
其他好文 时间:
2014-06-09 21:08:16
阅读次数:
224
合并单元格虽然美观,但是无法进行排序、筛选等操作。只有合并单元格拆分后才可以按常规进行统计。但是普通拆分后,excel仅保留合并单元格数据到区域左上角的单元格。解决方案:选定多个合并单元格,应用本宏即可每个单元格均保留数据:Sub
拆分() Dim c As Range For Each c In ...
分类:
其他好文 时间:
2014-06-09 20:04:16
阅读次数:
268
获取资源timeout:异常信息如下:Caused by:
java.sql.SQLException: An attempt by a client to checkout a Connection has timed
out.[Cause: com.mchange.v2.resourcepool...
分类:
其他好文 时间:
2014-06-09 19:30:09
阅读次数:
728
子类在继承父类后,创建子类对象会首先调用父类的构造函数,先运行父类的构造函数,然后再运行子类的构造函数,例如以下所看到的:class
Father{ public Father(){ System.out.println("I am father"); }}public class Child
e....
分类:
编程语言 时间:
2014-06-09 19:22:33
阅读次数:
203
System.out.println("java版本号:" +
System.getProperty("java.version")); // java版本号 System.out.println("Java提供商名称:"
+ System.getProperty("java....
分类:
其他好文 时间:
2014-06-09 17:16:33
阅读次数:
210
刚安装了,office2010,打开里面的access时,总是提示要配置Office single
image,但打开word和excel没问题,很是不舒服在网上找到N种方法,试下来还是不行。后来就把office2010卸掉,重新安装了一下,安装的时候,只把里面用不到的输入法、publish,out...
分类:
数据库 时间:
2014-06-09 16:52:40
阅读次数:
338