自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (6)
  • 收藏
  • 关注

转载 二叉查找树(BST),平衡二叉查找树(AVL),红黑树(RBT),B~/B+树(B-tree)的比较

【转自】 http://blog.csdn.net/bingjing12345/article/details/7830474 http://www.iteye.com/topic/614070此少侠总结的特棒,直接收藏了。我们这个专题介绍的动态查找树主要有: 二叉查找树(BST),平衡二叉查找树(AVL),红黑树(RBT),B~/B+树(B-tree)。这四种树都具备下面几个

2012-08-17 21:40:01 4183

转载 在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 2513

转载 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 741

转载 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 1217

转载 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 966

转载 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 1053

转载 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 1038

转载 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 1161

转载 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 782

转载 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 855

转载 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 465

转载 新浪网易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 4327

转载 c++继承中的内存布局

今天在网上看到了一篇写得非常好的文章,是有关c++类继承内存布局的。看了之后获益良多,现在转在我自己的博客里面,作为以后复习之用。——谈VC++对象模型(美)简.格雷程化    译译者前言一个C++程序员,想要进一步提升技术水平的话,应该多了解一些语言的语意细节。对于使用VC++的程序员来说,还应该了解一些VC++对于C++的诠释。 Inside the C++ Object

2012-05-15 16:05:22 536

转载 C++ 虚函数表解析

C++ 虚函数表解析 陈皓http://blog.csdn.net/haoel 转自:http://blog.csdn.net/haoel/article/details/1948051/前言 C++中的虚函数的作用主要是实现了多态的机制。关于多态,简而言之就是用父类型别的指针指向其子类的实例,然后通过父类的指针调用实际子类的成员函数。这种技术可以让父类的指针有“多

2012-05-15 16:02:19 490

原创 android在google map上画出导航路线图

android在google map上画线比较容易实现的,但是现在问题在于如何获取起点和终点之间的路线图。这里我们使用Google Directions API来实现, Google Directions API是一种使用 HTTP 请求计算多个位置间路线的服务。路线可以以文本字符串或纬度/经度坐标的形式指定起点、目的地和路标。Google Directions API 可以使用一系列

2011-04-17 00:53:00 13871 56

android在google map上画导航路线图

android在google map上画导航路线图

2011-11-14

Pro Hadoop

Chapter 1 Getting Started with Hadoop Core Chapter 2 The Basics of a MapReduce Job Chapter 3 The Basics of Multimachine Clusters Chapter 4 HDFS Details for Multimachine Clusters Chapter 5 MapReduce Details for Multimachine Clusters Chapter 6 Tuning Your MapReduce Jobs Chapter 7 Unit Testing and Debugging Chapter 8 Advanced and Alternate MapReduce Techniques Chapter 9 Solving Problems with Hadoop Chapter 10 Projects Based On Hadoop and Future Directions Appendix A The JobConf Object in Detail

2010-09-14

Hadoop权威指南(英文版)

1. Meet Hadoop 2. MapReduce 3. The Hadoop Distributed Filesystem 4. Hadoop I/O 5. Developing a MapReduce Application 6. How MapReduce Works 7. MapReduce Types and Formats 8. MapReduce Features 9. Setting Up a Hadoop Cluster 10. Administering Hadoop 11. Pig 12. HBase 13. ZooKeeper 14. Case Studies A. Installing Apache Hadoop B. Cloudera’s Distribution for Hadoop C. Preparing the NCDC Weather Data

2010-09-14

《Hadoop开发者》第三期

1 Hadoop 中的数据库访问 2 MapReduce 中多文件输出的使用 3 Zookeeper 使用与分析 4 浅析一种分类数据模型 5 Sector 框架分析 6 Run on Hadoop

2010-07-23

Hadoop开发者第二期

1、Hadoop 业界资讯 2、Nutch + Hadoop 构建商用分布式搜索引擎的问题探究 3、支持自定义爬虫的Nutch segment文件存储接口改写 4、Nutch中mapreduce应用的几个特殊点 5、Java RMI + Lucene 构建分布式检索应用初探 6、一对多的表关联在mapreduce中的应用(续) 7、InputSplit文件格式分析 8、短评:HDFS、MapReduce和HBase三者相辅相成、各有长处 9、HDFS在web开发中的应用 10、Mapreduce中value集合的二次排序 11、Hive SQL手册翻译 12、Mahout Kmeans简介

2010-07-23

Hadoop开发者第一期

目录:1 Hadoop 介绍 2 Hadoop 在国内应用情况 3 Hadoop 源代码eclipse 编译教程 7 在Windows 上安装Hadoop 教程 13 在Linux 上安装Hadoop 教程 19 在Windows 上使用eclipse 编写Hadoop 应用程序 24 在Windows 中使用Cygwin 安装HBase 28 Nutch 与Hadoop 的整合与部署 31 在Windows eclipse 上单步调试Hive 教程 38 Hive 应用介绍 42 Hive 执行计划解析 50 MapReduce 中的Shuffle 和Sort 分析 53 海量数据存储和计算平台的调试器研究 56 探讨MapReduce 模型的改进 58 运行eclipse 编译出的Hadoop 框架 59 表关联在MapReduce 上的实现 63 Hadoop 计算平台和Hadoop 数据仓库的区别

2010-07-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除