使用history.back()进行返回时,有时会提示“网页已过期”,多数是因为目标页面的form为post提交方式,而且是表单已经提交后的响应页面,无法找到form中的具体参数,而“报错”。具体解决办法: 一、在要返回的目标页面中,添加 二、将目标页面的form的method="post"去掉,或...
分类:
编程语言 时间:
2014-07-16 23:15:03
阅读次数:
267
In the 1960s, the legendaryStanford artificial intelligence pioneer, John McCarthy, famously gave agraduate student the job of “solving” computer visi...
分类:
其他好文 时间:
2014-07-10 00:59:27
阅读次数:
249
function next(){//前进window.history.forward();}function previous(){//后退window.history.back();}function jump(){//指定前进或后退页面数var num = document.getElement...
分类:
其他好文 时间:
2014-07-02 10:18:47
阅读次数:
215
difkstra + 路径输出
The Toll! Revisited
Time Limit: 3000MS
Memory Limit: Unknown
64bit IO Format: %lld & %llu
[Submit] [Go Back] [Status]
Description
Probl...
分类:
其他好文 时间:
2014-07-02 09:30:51
阅读次数:
371
关于回调: 回调是观察者模式以及反应堆模式的基础 一句话,回调就是一种双向调用模式,什么意思呢,就是说,被调用方在被调用时也会调用对方,这就叫回调。“If you call me, i will call back”。 先看看这个可以说比较经典的使用回调的方式: 背景1:class A 实...
分类:
其他好文 时间:
2014-07-01 12:14:40
阅读次数:
198
class Solution {public: vector > generate(int numRows) { vector > res; if (numRows row(1, 1); res.push_back(row); ...
分类:
其他好文 时间:
2014-06-30 21:46:08
阅读次数:
256
JAVA大数....
a^b-b^a
Time Limit: 250MS
Memory Limit: 4096KB
64bit IO Format: %I64d & %I64u
[Submit] [Go Back]
[Status]
Description
You are gi...
分类:
其他好文 时间:
2014-06-30 19:35:34
阅读次数:
296
KM 构图求最小权值匹配
保证最小的权值,所连的边一定是可以不相交的.
Ants
Time Limit: 3000MS
Memory Limit: Unknown
64bit IO Format: %lld & %llu
[Submit]
[Go Back] [Status]
Description
...
分类:
其他好文 时间:
2014-06-28 09:23:16
阅读次数:
235
经典的稳定婚姻匹配问题
UVALive - 3989
Ladies' Choice
Time Limit: 6000MS
Memory Limit: Unknown
64bit IO Format: %lld & %llu
[Submit] [Go Back] [Status]
Description
Prob...
分类:
其他好文 时间:
2014-06-28 08:35:28
阅读次数:
209
说明:本文全文转载而来,原文链接:http://www.cppblog.com/wanghaiguang/archive/2012/06/05/177644.htmlC++ Queues(队列)C++队列是一种容器适配器,它给予程序员一种先进先出(FIFO)的数据结构。1.back() 返回一个引用...
分类:
编程语言 时间:
2014-06-27 11:17:33
阅读次数:
345