- 博客(15)
- 资源 (6)
- 收藏
- 关注
转载 二叉查找树(BST),平衡二叉查找树(AVL),红黑树(RBT),B~/B+树(B-tree)的比较
【转自】 http://blog.youkuaiyun.com/bingjing12345/article/details/7830474 http://www.iteye.com/topic/614070此少侠总结的特棒,直接收藏了。我们这个专题介绍的动态查找树主要有: 二叉查找树(BST),平衡二叉查找树(AVL),红黑树(RBT),B~/B+树(B-tree)。这四种树都具备下面几个
2012-08-17 21:40:01
4219
转载 在Win7旗舰版自带IIS7.5中调试.Net 4.0网站出现无厘头500错误的解决办法
[转自] http://www.cnblogs.com/grammyleung/archive/2010/06/27/1766193.html在Win7旗舰版自带IIS7.5中调试.Net 4.0网站出现无厘头500错误的解决办法 不说原因,只说现象。 安装Win7 安装VS2010,其中VS2010自带了.Net 4.0的运行库。 开启自带IIS功能,可能是
2012-07-08 13:43:26
2554
转载 ASP.NET MVC 3 概述
[转自] http://www.cnblogs.com/haogj/archive/2011/01/15/1936473.htmlASP.NET MVC 3 概述原文地址:http://www.asp.net/mvc/mvc3导言ASP.NET MVC3 在 ASP.NET MVC 1 和 2 的基础上,增加了大量的特性,使得代码更加简化,并且可以深度扩展。这篇文章提供包含在此
2012-06-30 15:49:49
773
转载 ASP.NET MVC 3: Layouts and Sections with Razor
[转自] http://weblogs.asp.net/scottgu/archive/2010/12/30/asp-net-mvc-3-layouts-and-sections-with-razor.aspxASP.NET MVC 3: Layouts and Sections with RazorThis is another in a series of posts I’m
2012-06-29 18:43:51
1256
转载 ASP.NET MVC 3: Razor’s @: and <text> syntax
[转自] http://weblogs.asp.net/scottgu/archive/2010/12/15/asp-net-mvc-3-razor-s-and-lt-text-gt-syntax.aspxASP.NET MVC 3: Razor’s @: and syntax This is another in a series of posts I’m doing that c
2012-06-29 18:42:39
983
转载 ASP.NET MVC 3: Server-Side Comments with Razor
[转自]http://weblogs.asp.net/scottgu/archive/2010/11/12/asp-net-mvc-3-server-side-comments-with-razor.aspx ASP.NET MVC 3: Server-Side Comments with RazorEarlier this week we shipped the ASP.NE
2012-06-29 18:40:47
1077
转载 ASP.NET MVC 3: Layouts with Razor
[转自]http://weblogs.asp.net/scottgu/archive/2010/10/22/asp-net-mvc-3-layouts.aspx ASP.NET MVC 3: Layouts with Razor Two weeks ago we shipped the ASP.NET MVC 3 Beta Release. It supports “go l
2012-06-29 18:39:37
1060
转载 ASP.NET MVC 3: New @model keyword in Razor
[转自] http://weblogs.asp.net/scottgu/archive/2010/10/19/asp-net-mvc-3-new-model-directive-support-in-razor.aspxASP.NET MVC 3: New @model keyword in RazorTwo weeks ago we shipped the ASP.NET MVC 3
2012-06-29 18:36:12
1186
转载 Introducing “Razor” – a new view engine for ASP.NET
[转自] http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspxIntroducing “Razor” – a new view engine for ASP.NETOne of the things my team has been working on has been a new view
2012-06-29 18:32:26
810
转载 Visual Studio里面的搜索和浏览的一些技巧
Visual Studio里面的搜索和浏览的一些技巧[原文发表地址]Search and Navigation Tips/Tricks with Visual Studio[原文发表日期] 2010/8/24 12:24 AM[转自]http://msdn.microsoft.com/zh-cn/gg232829这是我写的关于VS2010和.Net4的博客系列的第27篇。
2012-06-28 11:35:38
887
转载 Visual Studio的调试技巧
Visual Studio的调试技巧【原文地址】Debugging Tips with Visual Studio 2010【原文发表日期】 2010/8/19 10:48 AM【转自】 http://msdn.microsoft.com/zh-cn/gg213858 这是我写的关于VS2010和.Net4发布的博客系列的第26篇。今天的博文包含了一些有用的能用于VS的
2012-06-28 11:24:23
484
转载 新浪网易IP地区信息查询API接口调用方法
原文:http://www.yovisun.me/sina-wangyi-ip-addr-api.html通过IP地址获取对应的地区信息通常有两种方法:1)自己写程序,解析IP对应的地区信息,需要数据库。2)根据第三方提供的API查询获取地区信息。第一种方法,参见文本《通过纯真IP数据库获取IP地址对应的地区信息》,这种方法的维护代价较高,而且对自己的服务器有一定的压力。
2012-06-19 00:17:12
4385
转载 c++继承中的内存布局
今天在网上看到了一篇写得非常好的文章,是有关c++类继承内存布局的。看了之后获益良多,现在转在我自己的博客里面,作为以后复习之用。——谈VC++对象模型(美)简.格雷程化 译译者前言一个C++程序员,想要进一步提升技术水平的话,应该多了解一些语言的语意细节。对于使用VC++的程序员来说,还应该了解一些VC++对于C++的诠释。 Inside the C++ Object
2012-05-15 16:05:22
557
转载 C++ 虚函数表解析
C++ 虚函数表解析 陈皓http://blog.youkuaiyun.com/haoel 转自:http://blog.youkuaiyun.com/haoel/article/details/1948051/前言 C++中的虚函数的作用主要是实现了多态的机制。关于多态,简而言之就是用父类型别的指针指向其子类的实例,然后通过父类的指针调用实际子类的成员函数。这种技术可以让父类的指针有“多
2012-05-15 16:02:19
503
原创 android在google map上画出导航路线图
android在google map上画线比较容易实现的,但是现在问题在于如何获取起点和终点之间的路线图。这里我们使用Google Directions API来实现, Google Directions API是一种使用 HTTP 请求计算多个位置间路线的服务。路线可以以文本字符串或纬度/经度坐标的形式指定起点、目的地和路标。Google Directions API 可以使用一系列
2011-04-17 00:53:00
13947
30
Pro Hadoop
2010-09-14
《Hadoop开发者》第三期
2010-07-23
Hadoop开发者第二期
2010-07-23
Hadoop开发者第一期
2010-07-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人