http://icpc.ahu.edu.cn/OJ/Problem.aspx?id=517
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2770
重点是建图,建完图,跑一边最短路,求出最短距离就行了
具体建图见图论算法书P201ZOJ2770
#include
#include
#include
#inc...
分类:
其他好文 时间:
2014-08-22 17:52:19
阅读次数:
233
World Wide Web is a vast supply of parts for also.Alexander V. There is also a real travel organization to move their children to a new place. Afforda...
分类:
其他好文 时间:
2014-08-22 12:25:56
阅读次数:
189
初次接触SpringMVC的时候对于请求路径是使用基于注解的配置@RequestMapping("/self")这种方式配置方便更适合RESTful风格一起使用@RequestMapping(value="/self/{name}",method.RequestMethod=GET)然后又由于需要接触到基于XML配置的请求路径如下:<propkey="/login.do">u..
分类:
编程语言 时间:
2014-08-22 02:51:26
阅读次数:
179
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-08-22 00:14:05
阅读次数:
172
Python为我们提供了很多便捷的方式去遍历一个字符串中的字符。比如,将一个字符串转换为一个字符数组(列表):theList=list(theString)同时,我们可以方便的通过for语句进行遍历:for c in theString: do_something_with(c)map函数用法:第一...
分类:
编程语言 时间:
2014-08-21 22:26:34
阅读次数:
263
Generator
题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2619
题意:给定一个数N,代表可以选前N个字母。然后给定一个仅有前N个字母组成的字符串,问从空串开始构造,每次可以在已有基础上从前N个字母中挑选一个加在后面,问构造的字符串的长度期望是多少?
思路:如果给定的串长度为L,那么对...
分类:
其他好文 时间:
2014-08-21 21:19:24
阅读次数:
274
请求的链接是用的A标签,A上同时写了href和A标签而言,当用户鼠标单击的时候,A对象被触发时会首先去执行请求。瞬时又执行href,这时ie6就会abort前一个请求。解决方法就是:直接把onclick事件写在href中:href="javascript:do()"还有一种解决方案:<ahref="javascript:void..
分类:
其他好文 时间:
2014-08-21 19:40:35
阅读次数:
199
创建一个记事本文件,然后吧这句话复制进去
for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn"
然后保存,在吧记事本文件从命名 叫 删除SVN信息.bat ,这时候要注意后缀名不是txt而是bat 了,然后双击这个批处理...
分类:
其他好文 时间:
2014-08-21 19:18:54
阅读次数:
275
原题:
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
思路:和上一题一样,后续我们可以通过最后一个值得到根的值,同样可以通过定位根的值得到左右子树的...
分类:
其他好文 时间:
2014-08-21 17:22:24
阅读次数:
138
一 字符串中的用法1。地球人都知道 C# 中 字符串常量可以以 @ 开头声名,这样的优点是转义序列“不”被处理,按“原样”输出,即我们不需要对转义字符加上 \ (反斜扛),就可以轻松coding。如,[csharp]view plaincopyprint?stringfilePath=@"c:\Do...
分类:
其他好文 时间:
2014-08-21 16:50:34
阅读次数:
190