摘要:
现在,有两种方法可以实现网页的自动跳转。(1) 用html自带的标签(如下)可以实现网页的自动跳转,而且可以控制跳转的延时。其中,数字0代表延时尽可能小。(2) Java Script中的window.location语句也可以实现page redirect。window.location="http://www.baidu.com";下面写两个简单的网页,来测试下这两种实现网页跳转的方法的区别。网页A(1.html) Redirection Speed Test SHOW MEIf redirection goes slow evidently. 网页B(2.html) 阅读全文
摘要:
Unix lsThe computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along with the new computer. Your assignment is to write the formatter for the ls function.Your program will eventually read input from a pipe (althou 阅读全文
摘要:
买一送一啊 3177和3352的区别在于3177数据有重边!但是我先做3177的 那么就直接ctrl+c+v搞3352了~。题意:给一个无向图,要令每个点之间至少有两条不重合的路,需要至少加多少条边。思路:找出无向图中边双联通的点进行缩点后,根据缩点图的每条边(割边)给缩点增加度数,通过图的结构可以得出公式:至少增加的边数 =(这棵树总度数为1的结点数 + 1 )/ 2。事实上求割边的方法可以用Tarjan方法的变形来求得,同时因为是无向图,要记录其父节点pre。可以知道对于边u,v;当Low[u]==Low[v]时,可以确定u,v在同一个边双联通,对于Low值不同,即不再同一个边双联通的点的 阅读全文
摘要:
Breaking StringsTime Limit:2 Seconds Memory Limit:65536 KBA certain string-processing language allows the programmer to break a string into two pieces. Since this involves copying the old string, it costs n units of time to break a string of n characters into two pieces. Suppose a programmer wants.. 阅读全文
摘要:
一些主要的演变过程及改进,还有很多部分不可能一一列出,下面是从1.1到4.0的一些主要改进:一、.NET Framework 1.1版本 1、ASP.NET移动控件 2、ADO.NET的改动 添加System.Data.Odbc命名空间 新增System.Data.OracleClient命名空间供Oracle使用 DataReader对象公开HasRows属性,判断是否有返回行 Connection对象具有EnlistDistributedTransaction,可以在分布式事务中启动手动登记。 3、并发执行 .NET Framework 1.1版本支持并行执行。 4... 阅读全文
摘要:
Error: 1175 SQLSTATE: HY000 (ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE) Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. Solution: SETSQL_SAFE_UPDATES= 0; update T set col = 'xxx' where condition ……; 阅读全文
摘要:
前言:本问题出现在tomcat 7发布 web3.0Maven项目的时候出现。问题阐述: 异常:java.lang.OutOfMemoryError:PermGen space解决如下:1、在MAVEN_HOME/bin/mvn.bat文件加入一句话:搜索@REM set MAVEN_OPTS=在它下面加入一句话:set MAVEN_OPTS= -Xms128m -Xmx512m测试如下: mvn –version 如果出现以下圈红的部分则表示配置成功 2、配置tomcat的eclipse插件。配置运行参数。 设置该参数。添加以下圈红的部分 如此便可以解决该问题另外:Tomcat发布Mav.. 阅读全文
摘要:
:W Problem A: Football (aka Soccer)The ProblemFootball the most popular sport in the world (americans insist to call it "Soccer",but we will call it "Football"). As everyone knows, Brasil is the country that have mostWorld Cup titles (four of them: 1958, 1962, 1970 and 1994). As 阅读全文
摘要:
1 什么是约瑟夫问题约瑟夫环是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列。 2 如何求最后一个出列的人 1、模拟方法 2、数学方法 3 模拟方法 模拟方法就是所谓的一个个模拟,一个一个出列。这个方法比较多,可以直接用数组模拟,也可以直接建一个循环链表模拟, 总之这个很好实现,但是复杂度却是O(nm),如果n和m都是10000,要求1s计算出结果,估计就不行了。 这个算法实现,网上一大堆:随便给出两... 阅读全文
摘要:
Jungle RoadsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3614Accepted Submission(s): 2609 Problem Description The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads... 阅读全文