摘要:有几种解法:1. 遍历链表,将已经遍历过的节点放在一个hash表中,如果一个节点已经存在hash表中,说明有环。时间:O(n) 空间:O(n)2. 反转链表 时间O(n),空间O(1),使用三个指针3. 快慢指针。 时间O(n), 空间O(1),使用两个指针参考:http://kb.cnblogs.com/page/52054/http://www.cnblogs.com/shawn-zhou/archive/2008/11/26/1341307.htmlhttp://kb.cnblogs.com/page/52054/http://keep.iteye.com/blog/293454【摘要】 阅读全文
数据库设计原理【B树、B-树、B+树】
2012-09-06 14:13 by 诸葛二牛, 346 阅读, 0 推荐, 收藏, 编辑
摘要:SQL Server的Indexes是用 B+来实现,一般单张表只存在一个聚集索引,和不超过254个的非聚集索引, 当中的保存索引是在页表上,这个的机制,就不会受到内存大小的影响。参考资料:1.wiki2.http://www.cnblogs.com/chjw8016/archive/2011/03/08/1976891.html 阅读全文
Visual Studio 2012 and .NET Framework 4.5 released to the web!
2012-08-23 22:41 by 诸葛二牛, 177 阅读, 0 推荐, 收藏, 编辑
摘要:From Jason Zander’s blog 阅读全文
快速查看Gmail的未读邮件
2012-08-23 14:05 by 诸葛二牛, 555 阅读, 0 推荐, 收藏, 编辑
摘要:很多朋友都会将Gmail作为自己的主力邮箱,但Gmail在查看未读邮件时并不是很方便。当你单击“选择”后面的“未读”按钮时,Gmail只会自动勾选所有未读的邮件,仍然需要再次单击才能进行阅读。如果你希望获得更为快捷的方法,那么请按照下面的步骤进行操作:在页面顶部的搜索框中输入“label:unread”或“is:unread" 就可以轻松过滤。 阅读全文
@helper in MVC 3.0
2012-08-22 18:01 by 诸葛二牛, 198 阅读, 0 推荐, 收藏, 编辑
摘要:http://weblogs.asp.net/scottgu/archive/2011/05/12/asp-net-mvc-3-and-the-helper-syntax-within-razor.aspxhttp://msdn.microsoft.com/en-us/vs2010trainingcourse_aspnetmvc3formsandvalidation_topic3.aspx 阅读全文
页面上显示大段的不可编辑文字的div css方法
2012-08-22 17:50 by 诸葛二牛, 475 阅读, 0 推荐, 收藏, 编辑
摘要:<div style="height: 100px; overflow: scroll;">@Model.Description</div> 阅读全文
No Design View in MVC 3
2012-08-22 17:46 by 诸葛二牛, 185 阅读, 0 推荐, 收藏, 编辑
摘要:There is no design view for Razor but when I put on my designer hat I use Expression Web to sketch the site layout then I move to Visual Studio andcreate my views and partial views.It feels like a loss after the WebForms design view but i got used to it 阅读全文
Expression Web 4SP 安装问题
2012-08-22 10:55 by 诸葛二牛, 358 阅读, 0 推荐, 收藏, 编辑
摘要:问题: 在安装Web 3 时,提示 : "Your computer is scheduled to restart. Restart your computer and run Setup to continue installing this Expression program."解决方案: We check three registry keys to determine if a reboot is required. It’s been known to happen that after an install and a reboot, these keys 阅读全文
Windows 7的安装,制作U盘启动,Ghost还原Windows 镜像
2012-07-15 16:21 by 诸葛二牛, 474 阅读, 0 推荐, 收藏, 编辑
摘要:有网友问我如何才能快速的安装(重装)Windows,我比较推荐使用U盘安装的方法来。最通用的方法,就是制作win PE的U盘启动,然后将现有的windows的镜像还原到系统盘中。具体的作法和工具可以按照以下方法来做。1.备份C盘的数据到其他盘2.下载U盘启动工具,制作U 盘启动,http://www.upanboot.com/download/1.html是一个不错的工具,下载方便。3.下载windows 7的安装镜像,然后开始使用U盘启动还原镜像。http://www.upanboot.com/gho/win7_32_gho.html?index 阅读全文
ASP.NET Visual Studio Error Source XXX could not be opened ('Unspecified error ')
2012-07-12 16:25 by 诸葛二牛, 409 阅读, 0 推荐, 收藏, 编辑
摘要:1 Error 1 Source file 'D:\Projects\LabServicePlatform\dev\LabServicePlatform\LabServicePlatform\Models\SettingQueryParams.cs' could not be opened ('Unspecified error ') LabServicePlatform2 Error 2 Source file 'D:\Projects\LabServicePlatform\dev\LabServicePlatform\LabServicePlatfo 阅读全文