原题地址:http://oj.leetcode.com/problems/lru-cache/题意:设计LRU
Cache参考文献:http://blog.csdn.net/hexinuaa/article/details/6630384 这篇博文总结的很到位。
https://github...
分类:
编程语言 时间:
2014-05-01 10:47:16
阅读次数:
501
1.下载破解版:http://www.pc6.com/softview/SoftView_13845.html2.安装时引入授权文件并汉化;3.打开IE9,菜单:管理加载项->工具栏和扩展,查看HttpWatch
Professional启动;4.IE9执行快捷键shift+f2即打开httpwat...
分类:
Web程序 时间:
2014-05-01 10:36:56
阅读次数:
363
原题地址:http://oj.leetcode.com/problems/linked-list-cycle/题意:判断链表中是否存在环路。解题思路:快慢指针技巧,slow指针和fast指针开始同时指向头结点head,fast每次走两步,slow每次走一步。如果链表不存在环,那么fast或者fast...
分类:
编程语言 时间:
2014-05-01 10:33:38
阅读次数:
426
border-radius是CSS3圆角属性,用来实现DIV层的4个边框画成圆角。一、语法:border-radius:none|{1,4}[/{1,4}]如:border-radius:5px5px5px5px;二、取值::由浮点数字和单位标识符组成的长度值。不可为负值。三、说明:border-
...
分类:
Web程序 时间:
2014-05-01 08:28:26
阅读次数:
471
HTTP协议是无状态的。从客户端到服务器的连接可以在每个请求之后关闭。但是一般需要把一些客户端信息从一个页面传送给另一个页面。在保存状态的各种方式中,主要区别是:状态是存储在客户端还是服务器上。
分类:
Web程序 时间:
2014-05-01 08:24:40
阅读次数:
311
原题地址:http://oj.leetcode.com/problems/linked-list-cycle-ii/题意:如果链表中存在环路,找到环路的起点节点。解题思路:这道题有点意思。首先使用快慢指针技巧,如果fast指针和slow指针相遇,则说明链表存在环路。具体技巧参见上一篇http://w...
分类:
编程语言 时间:
2014-05-01 08:19:31
阅读次数:
340
在VC中使用WebBrowser控件的两方法黄森堂(vcmfc)著ClassWizard方式:1.创建包装类:View->ClassWizard->Add
Class->Form a Type
Library->C:\winnt\system32\shdocvw.dll->只选择IWebBrowse...
分类:
Web程序 时间:
2014-05-01 08:15:32
阅读次数:
470
using System;using System.Collections.Generic;using
System.Web;using System.Web.UI;using System.Web.UI.WebControls;using
System.IO;using System.Drawin...
分类:
Web程序 时间:
2014-05-01 08:07:45
阅读次数:
408
nginxserver { listen 80; server_name localhost;
root /apps/web/; index index.html; location / { } location /server { ...
分类:
其他好文 时间:
2014-05-01 08:03:15
阅读次数:
902