自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

彼家有兔,狡兔三窟。

I love tech. I love CSDN.

  • 博客(101)
  • 资源 (8)
  • 收藏
  • 关注

原创 C#验证输入的是否数字的方法

方法一:遍历a) static bool IsNumeric(string str)   ...{    if (str==null || str.Length==0)     return false;    foreach(char c in str)    ...{     if (!Char.IsNumber(c))     ...{      return false; 

2007-04-20 15:55:00 2146

转载 不重启Windows直接更改IP地址

不重起Windows直接更改IP地址     作者:浙江省温岭电信局   王骏         设置IP地址只需要更改注册表中关于适配器的相应设置,但更改后需要重新启动系统才能生效,而AddIPAddress函数只能添加IP而不是更改当前的IP,我们在Windows   NT/2000界面上操作不需要重新启动就可以生效,那系统到底做了什么额外的工作才使IP设置直接生效呢?笔者通过跟踪explore

2006-12-07 08:35:00 1984

转载 使用GDI+ for .NET创建一个含有水印效果的照片

http://www.cnblogs.com/wdxinren/archive/2005/07/28/202230.htmlCreating a Watermarked Photograph with GDI+ for .NETBy Joel NeubeckThis article describes the process of overlaying a Watermark image on

2006-09-29 16:42:00 1675 1

转载 [MSDN]编写自定义属性

.NET Framework 开发人员指南  编写自定义属性   要设计自己的自定义属性,不必掌握许多新的概念。如果熟悉面向对象的编程,并且知道如何设计类,就已具备了所需的大部分知识。自定义属性本质上是直接或间接地从 System.Attribute [ http://msdn2.microsoft.com/zh-cn/library/system.attribute.as

2006-09-29 09:27:00 1807

转载 用ASP.Net实现文件的在线压缩和解压缩

本文来自:CSDN johnsuna(阿山NET)的专栏我们经常会遇到批量上传的问题,也会遇到将某个目录下所有文件都上传到服务器上的问题。那么,如何解决此类问题呢?以前的技术一般采用ActiveX等方式,这里我采用SharpZlib来实现,听说VS2005已有压缩和解压缩的解决方案,我还没有时间用VS2005,所以就只好使用VS2003 + SharpZlib来解决问题了。1、首先从这里h

2006-09-26 23:27:00 1372

转载 CSS+JS实现网页(图片)特效

1.图片半透明效果实现图片默认显示是半透明的效果,鼠标移上去时透明度变为100%。①用CSS+JS实现 用CSS定义一类: #spotlight { FILTER: light }   并加入如下JS代码:function high(which2){theobject=which2highlighting=setInterval("highli

2006-09-26 10:01:00 6583 3

原创 建立第一个directX程序——在C#下利用DirectSound实现声音播放

这是给directX初学者的教程,如果你是大虾,大可不必理会本文。第1步:下载并安装DirectX 9 SDKDirectX 9 SDK下载地址:http://msdn.microsoft.com/directx/sdk/ ,目前最新版本是2006年8月,下载包500MB多。第2步:建立C#应用程序新建一个C#的windows应用程序,名称这里输mydirectXtest。解决

2006-08-30 12:00:00 3953

原创 FCKeditor V2.x上传文件自动重命名

转自www1.biochems.cn  FCKeditor 的文件上传默认是不改名的,本地的文件名是什么,上传后保留原来的文件名;如果存在同名文件,则会被自动在文件名后面加 (n) 来标识。但是如果原文件名中包含有空格或标点,则有可能会出现能上传但不能引用的情况。我们可以通过修改,让 FCKeditor 自动生成不重复且不含非法字符的文件名,思路是根据精确到秒的上传时间来命名,然后存放在服务器

2006-08-29 11:36:00 2445

转载 再贴一个上传图片加水印的代码

public string GetRandom()  {   Random r=new Random();   return r.Next(10000).ToString();  }  private void upImge()  {   string fileName=Path.GetFileName(File1.PostedFile.FileName);   string txt=file

2006-08-23 17:51:00 1422

转载 Mono in Ubuntu

 转载自:魔法花园 - .NET版 My Environment All Partition is NTFS install PQMagic to get free spaces,and I take a 700M FAT32 Partition to save Ubuntu ISO Install Ubuntu Download Ub

2006-08-23 15:47:00 1338

转载 Microsoft .NET Remoting:技术概述

Microsoft .NET Remoting:技术概述Piet Obermeyer 和 Jonathan HawkinsMicrosoft Corporation摘要:本文提供了 Microsoft .NET Remoting 框架的技术概述,其中包括了使用 TCP 通道或 HTTP 通道的示例。目录简介远程对象代理对象通道激活对象的租用生存期总结附录 A:使用 TCP 通道进行

2006-08-23 15:29:00 1112

原创 Linux环境下bind9.2.3域名服务器的安装

1.从http://www.isc.org/products/BIND/bind9.html下载bind9的源文件。目前版本为9 .23,源文件为bind-9.2.3.tar.gz。 2.将源文件bind-9.2.3.tar.gz置于/usr/local/src目录下。 3.解压缩源文件bind-9.2.3.tar.gz   # tar -xzvf bind-9.2.3.tar.gz -C /us

2006-08-14 18:03:00 2359

原创 DNS安装配置全过程(BIND)

bind-9.3.1rc1.tar.gz 安装实例 先从 http://www.isc.org/products/BIND/ 下载bind,我下载的是bind-9.3.1rc1.tar.gz 我下载的文件放在/root目录下 进入目录解压缩 [root@linux root]#tar xfz bind-9.3.1rc1.tar.gz 进如刚解压出来的目录 [root@linux root]

2006-08-14 16:47:00 1646

转载 Asp.net(C#)实现验证码功能

新建一个专门用来创建验证码图片的页面ValidateCode.aspx它的后台cs文件代码如下:PageLoadprivate void Page_Load(object sender, System.EventArgs e)        {            string checkCode = CreateRandomCode(4);            Session["Ch

2006-08-09 09:18:00 975

原创 BIND安装及DNS相关内容定义

http://www.chinaunix.net/jh/16/78246.html《BIND安装及DNS相关内容定义》 

2006-08-08 08:40:00 1119

原创 安装 GCC 编译器

http://www.chinaunix.net/jh/23/314284.html介绍如何安装GCC编译器的好文。 

2006-08-08 08:39:00 1182

原创 [原创]一个AIX FTP文件名显示错误带时间的问题

7月初,安装AIX发现一个很奇怪的问题,不管是用何种FTP方式连AIX SERVER,都会将所有文件、文件夹前面加上时间,如上图,而实际这些文件、文件夹的名称是不带时间的。于是到CHINAUNIX上发帖求助(地址)。同时自己也继续安装并研究原因。结果发现如果AIX5L在安装开始就选择简体中文EUC而不是默认的en-US,那么中文就会替代英文替代的非常彻底,连登录窗口都是中文的了,也不会出现上面

2006-08-08 08:28:00 3215 5

转载 AIX操作系统root密码丢失后咋办?

1。如果客户有其他用户拥有root权限,可以用该用户登陆,并执行下列恢复动作。 # > passwd root Changing password for "root" roots New password: Enter the new password again: 2. 如果客户没有第二个root权限用户存在, 要用系统光盘启动到单用户模式 a. vi /etc/passwd 文件 root

2006-07-11 15:11:00 1372

原创 Troubleshooting Lotus Domino hangs and crashes

http://www-128.ibm.com/developerworks/lotus/library/domino-server-crashes/Level: IntermediateKiran Bellari, Software Engineer, IBM17 Jan 2006Quick -- whats the difference between a server han

2006-07-10 11:32:00 2633

转载 AIX Useful Commands

http://www.chinaunix.net 作者:ddlldd2000  发表于:2003-09-27 19:39:32 compress -c file.txt >; file.Z           Create a compressed file. uuencode (infile) (extract-file-name) >; (output file) Converts a b

2006-07-03 20:46:00 1413

原创 用Xmanager等终端软件无法连接AIX的解决方案

显示错误:XDMCP Connection failed.Try again?解决方法:AIX上无须进行任何配置,但是必须有XDMCP协议。服务程序在监听XDMCP端口。CDE的XDMCP服务器为 dtlogin,X Window本身的XDMCP服务器为xdm,当然GNU也有一些其它的服务器。如果AIX上安了CDE,则只要启动CDE即可。如果没有安装CDE,需要启动xdm。 以下命令可以确

2006-07-03 20:37:00 7763 1

原创 AIX CDE不能启动的故障一般性解决方法

CDE不能启动的故障一般性解决方法 Document #: 1811114I23000 Body: CDE不能启动的故障一般性解决方法环境:AIX ALL问题描述: 用户经常会遇到CDE桌面启动不了的情况,那么遇到这种情况应该如何解决呢?解答: 1、检查是否从图形控制台上能看到login图形提示。如果可以看到,问题仅仅发生在输入用户名密码之后出现篮屏等等不能登陆的情况,那么检查:a

2006-07-03 20:29:00 1894

原创 vi介绍编 (1、2、3)

vi介绍编 (1) vi快速入门本文出自:OHaHa的学习心得[ohaha.ks.edu.tw] 作者:蓝色泡泡([email protected]) (2002-03-16 08:00:00) ◎前言        我是pico的使用者,在我是redhat linux使用者的时候,     当时我觉得pico给我的感觉很亲切,功能也很强大.          了FreeBSD之後,突然发现竟

2006-06-29 12:07:00 1199

原创 接收到的邮件中的收件人列表中并没有自己

 出处:IBM产品:Lotus Domino Server平台:无关软件版本:6.x,5.x用户在 Lotus Domino 中收到一个 SPAM 邮件,收件人列表中并没有自己。这样收件人就觉得很疑惑,因为他认为 router 将邮件发给错误的人。这种问题如何解释?SMTP (internet) 邮件包括两部分:-- Envelope headers (RFC821): Env

2006-06-28 10:04:00 3977

原创 Domino 服务器控制台命令缩写

出处:IBM 环境 产品:Lotus Domino Server平台:无关软件版本:6.x 问题 常用的Domino 服务器控制台命令的

2006-06-28 09:58:00 818

原创 Domino服务器命令表

Broadcast message       向该服务器的用户广播消息Broadcast message usernames 向该服务器的某一用户广播消息Dbcache Flush            关闭当前在数据库高速缓存中打开的所有数据库。使用此命令可以在高速缓存中维护数据库,例如:备份或恢复数据库。Drop username               关闭一个或多个服务器

2006-06-28 09:57:00 1430

转载 国内国外常用wiki程序大汇总

内容来源于网络。  Wiki 是一个协同著作平台或称开放编辑系统。所谓协同工作, 即它能够让浏览网页的人都能够去修订网页,其简介的 ... Wiki 是什么做到的. Wiki 使用 了简化的语法,替代复杂的HTML,加上WEB 界面的编辑工具,降低内容维护的门槛; ......  相信很多的站长都需要WiKi,我们可以用Wiki来建设帮助系统,知识系统,松散的讨论平台,甚至收藏夹...... 

2006-06-27 16:28:00 4327 1

转载 使用FileUpload控件上传图片并自动生成缩略图、自动生成带文字和图片的水印图

http://www.cnblogs.com/weekzero/archive/2006/05/05/392003.html    本文借助vs2005中自带的FileUpload控件实现图片文件的上传并生成缩略图。    实现过程:选择图片上传成功后,取得已经存在服务器的文件生成缩略图,并且判断是否是图片类型的文件,这个的判断可以在程序中修改,本程序只是判断了“image/bmp”、“ima

2006-06-22 12:00:00 1224

原创 关于URL重写

今天研究了大半天自定义后缀的URL重写,终于成功了。搜集几篇这方面的好文如下:1、《在 ASP.NET 中执行 URL 重写》http://www.microsoft.com/china/msdn/library/webservices/asp.net/URLRewriting.mspx2、《ASP.net的RUL重写》:http://www.cnblogs.com/hd/archive/

2006-06-16 16:29:00 1000

原创 [文摘]用PearPC在Windows下面运行MAC

原文地址:http://www.windowsdevcenter.com/pub/a/windows/2005/01/18/PearPC.html

2006-06-07 11:38:00 1090

转载 PS特效:腐蚀金属牌上的镂空字

主要步骤整理:  一、长方体造型  二、边角柔化  三、给长方体帖上材质  四、给材质增加腐蚀效果  五、调节色彩与明暗  六、修饰边缘  七、文字制作  八、给镂空文字做纹理  完成效果:制作步骤:  一、长方体造型  1.新建一个文件,图像大小为600×400像素,颜色模式选择RGB模式,选择白色背景。  2.先新建图层1,取名“长方体”并将此图层填充为白色,选择菜单中的滤镜-渲染-3D变换,

2006-04-30 09:12:00 2150 1

转载 ASP.NET设计中的性能优化问题

一、SqlDataRead和Dataset的选择  Sqldataread优点:读取数据非常快。如果对返回的数据不需做大量处理的情况下,建议使用SqlDataReader,其性能要比datset好很多。缺点:直到数据读完才可close掉于数据库的连接  (SqlDataReader 读数据是快速向前的。SqlDataReader 类提供了一种读取从 SQL Server 数据库检索的只进数

2006-04-27 08:58:00 1017

转载 ASP.Net基础备忘

1. 打开新的窗口并传送参数:传送参数:response.write("window.open(*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+")")接收参数:string a  = Request.QueryString("id");string b  = Request.QueryString("id1");2.为

2006-04-17 14:06:00 781

转载 [好文]这才叫赚钱:月薪8000的出租车司机给我上了震撼一课

这个司机做CSI恐怕也行。 这个叉头司机太强劲了,要做生意额朋友好好看看。。。 我要从徐家汇赶去机场,于是匆匆结束了一个会议,在美罗大厦前搜索出租车。一辆大众发现了我,非常专业的、径直的停在我的面前。这一停,于是有了后面的这个让我深感震撼的故事,象上了一堂生动的MBA案例课。为了忠实于这名出租车司机的原意,我凭记忆尽量重复他原来的话。 “去哪里……好的,机场。我在徐家汇就喜欢做美罗大厦的生

2006-04-11 09:23:00 953

转载 [精华]AIX的域名服务

 http://www.chinaunix.net 作者:oem_temp  发表于:2005-08-01 17:10:20 经过两天的努力终于将AIX的DNS配置成功了,把我的配置过程写下来,和大家分享,我是初学乍练,如有不对的地方,还请前辈不要吝惜笔墨,予以指正。 DNS的全名是:Domain Name System 至于他的历史、用途、工作原理等有好多文章都有说过,我就不浪费大家的时

2006-04-11 09:17:00 1507

原创 关于安装SQL SERVER时出现“某个程序安装已在安装计算机上创建挂起的文件操作”的解决办法

安装SQL SERVER老出现“以前的某个程序安装已在安装计算机上创建挂起的文件操作。运行安装程序之前必须重新启动计算机”的错误,无法进行下去。重启几遍计算机都没有用,后来参考网上的一些文章,通过修改注册表解决了问题:打开注册表编辑器,在HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control/Session Manager中找到PendingFi

2006-04-11 09:12:00 2289 3

原创 用Email免费发送传真

原文:http://www.tpc.int/faxbyemail.html开始发送传真之前,首先检测下你要发送传真的地区是否开通了此项服务(检测)发送传真前,首先打开你的邮箱,打开一个新的写信窗口地址格式:remote-printer.recipient_name@fax_number.iddd.tpc.intrecipient_name:显示在封面上的收件人信息,其中_将转化为空

2006-04-07 17:44:00 4636

转载 JavaScript应用:Iframe自适应其加载的内容高度

标题       JavaScript应用:Iframe自适应其加载的内容高度     选择自 meizz 的 Blog  关键字   JavaScript应用:Iframe自适应其加载的内容高度 main.htm:                                 iframe自适应加载的页面高度                             child.ht

2006-03-30 11:09:00 1114 2

转载 SqlServer存储过程编写经验和优化

一、前言:在经过一段时间的存储过程开发之后,写下了一些开发时候的小结和经验与大家共享,希望对大家有益,主要是针对Sybase和SQL Server数据库,但其它数据库应该有一些共性。 二、适合读者对象:数据库开发程序员,数据库的数据量很多,涉及到对SP(存储过程)的优化的项目开发人员,对数据库有浓厚兴趣的人。 三、介绍:在数据库的开发过程中,经常会遇到复杂的业务逻辑和对数据库的操作,这个时候就

2006-03-15 15:35:00 795

转载 关于 Blog 和 RSS 的全面介绍

原著:Aaron Skonnard翻译:NorthTibet 原文出处:MSDN Magazine Apr. 2004(The XML Files) 什么是 Blog? "Blog"是 Web Log 的简称(译者注:也就是网志(中国大陆也叫博客))。它是一种作者与读者以日志风格进行交

2006-03-10 15:16:00 1185

Learning Python, 3rd Edition

Learning Python, 3rd Edition Mark Lutz Book Description Publication Date: October 29, 2007 | ISBN-10: 0596513984 | ISBN-13: 978-0596513986 | Edition: Third Edition Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose. Learning Python is based on material from author Mark Lutz's popular training courses, which he's taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go. This book covers: Types and Operations -- Python's major built-in object types in depth: numbers, lists, dictionaries, and more Statements and Syntax -- the code you type to create and process objects in Python, along with Python's general syntax model Functions -- Python's basic procedural tool for structuring and reusing code Modules -- packages of statements, functions, and other tools organized into larger components Classes and OOP -- Python's optional object-oriented programming tool for structuring code for customization and reuse Exceptions and Tools -- exception handling model and statements, plus a look at development tools for writing larger programs. Learning Python gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you're ready to discover what Google and YouTube see in Python, this book is the best way to get started.

2012-04-05

Natural Language Processing with Python

Natural Language Processing with Python Steven Bird, Ewan Klein, Edward Loper Book Description Publication Date: July 7, 2009 | ISBN-10: 0596516495 | ISBN-13: 978-0596516499 | Edition: 1 This book offers a highly accessible introduction to natural language processing, the field that supports a variety of language technologies, from predictive text and email filtering to automatic summarization and translation. With it, you'll learn how to write Python programs that work with large collections of unstructured text. You'll access richly annotated datasets using a comprehensive range of linguistic data structures, and you'll understand the main algorithms for analyzing the content and structure of written communication. Packed with examples and exercises, Natural Language Processing with Python will help you: Extract information from unstructured text, either to guess the topic or identify "named entities" Analyze linguistic structure in text, including parsing and semantic analysis Access popular linguistic databases, including WordNet and treebanks Integrate techniques drawn from fields as diverse as linguistics and artificial intelligence This book will help you gain practical skills in natural language processing using the Python programming language and the Natural Language Toolkit (NLTK) open source library. If you're interested in developing web applications, analyzing multilingual news sources, or documenting endangered languages -- or if you're simply curious to have a programmer's perspective on how human language works -- you'll find Natural Language Processing with Python both fascinating and immensely useful.

2012-04-05

Big Data Glossary

Big Data Glossary A Guide to the New Generation of Data Tools By Pete Warden Publisher: O'Reilly Media Released: September 2011 Pages: 60 Print ISBN: 978-1-4493-1459-0 ISBN 10: 1-4493-1459-7 Ebook ISBN: 978-1-4493-1458-3 ISBN 10: 1-4493-1458-9 To help you navigate the large number of new data tools available, this guide describes 60 of the most recent innovations, from NoSQL databases and MapReduce approaches to machine learning and visualization tools. Descriptions are based on first-hand experience with these tools in a production environment. This handy glossary also includes a chapter of key terms that help define many of these tool categories: NoSQL Databases—Document-oriented databases using a key/value interface rather than SQL MapReduce—Tools that support distributed computing on large datasets Storage—Technologies for storing data in a distributed way Servers—Ways to rent computing power on remote machines Processing—Tools for extracting valuable information from large datasets Natural Language Processing—Methods for extracting information from human-created text Machine Learning—Tools that automatically perform data analyses, based on results of a one-off analysis Visualization—Applications that present meaningful data graphically Acquisition—Techniques for cleaning up messy public data sources Serialization—Methods to convert data structure or object state into a storable format TABLE OF CONTENTS Chapter 1 Terms Document-Oriented Key/Value Stores Horizontal or Vertical Scaling MapReduce Sharding Chapter 2 NoSQL Databases MongoDB CouchDB Cassandra Redis BigTable HBase Hypertable Voldemort Riak ZooKeeper Chapter 3 MapReduce Hadoop Hive Pig Cascading Cascalog mrjob Caffeine S4 MapR Acunu Flume Kafka Azkaban Oozie Greenplum Chapter 4 Storage S3 Hadoop Distributed File System Chapter 5 Servers EC2 Google App Engine Elastic Beanstalk Heroku Chapter 6 Processing R Yahoo! Pipes Mechanical Turk Solr/Lucene ElasticSearch Datameer BigSheets Tinkerpop Chapter 7 NLP Natural Language Toolkit OpenNLP Boilerpipe OpenCalais Chapter 8 Machine Learning WEKA Mahout scikits.learn Chapter 9 Visualization Gephi GraphViz Processing Protovis Fusion Tables Tableau Chapter 10 Acquisition Google Refine Needlebase ScraperWiki Chapter 11 Serialization JSON BSON Thrift Avro Protocol Buffers

2012-04-05

Introduction to Information Retrieval

Christopher D. Manning, Prabhakar Raghavan and Hinrich Schütze, Introduction to Information Retrieval, Cambridge University Press. 2008. Features • Introduces all key concepts, requiring little prior knowledge • All concepts are illustrated with figures and examples • Supporting web site features lecture slides that follow the book, and a solutions manual for lecturers Table of Contents 1. Information retrieval using the Boolean model 2. The dictionary and postings lists 3. Tolerant retrieval 4. Index construction 5. Index compression 6. Scoring and term weighting 7. Vector space retrieval 8. Evaluation in information retrieval 9. Relevance feedback and query expansion 10. XML retrieval 11. Probabilistic information retrieval 12. Language models for information retrieval 13. Text classification and Naive Bayes 14. Vector space classification 15. Support vector machines and kernel functions 16. Flat clustering 17. Hierarchical clustering 18. Dimensionality reduction and latent semantic indexing 19. Web search basics 20. Web crawling and indexes 21. Link analysis.

2012-02-20

Programming Interviews Exposed 2nd.Edition (CHM版)

The pressure is on during the interview process but with the right preparation, you can walk away with your dream job. This classic book uncovers what interviews are really like at America's top software and computer companies and provides you with the tools to succeed in any situation. The authors take you step-by-step through new problems and complex brainteasers they were asked during recent technical interviews. 50 interview scenarios are presented along with in-depth analysis of the possible solutions. The problem-solving process is clearly illustrated so you'll be able to easily apply what you've learned during crunch time. You'll also find expert tips on what questions to ask, how to approach a problem, and how to recover if you become stuck. All of this will help you ace the interview and get the job you want. What you will learn from this book Tips for effectively completing the job application Ways to prepare for the entire programming interview process How to find the kind of programming job that fits you best Strategies for choosing a solution and what your approach says about you How to improve your interviewing skills so that you can respond to any question or situation Techniques for solving knowledge-based problems, logic puzzles, and programming problems Who this book is for This book is for programmers and developers applying for jobs in the software industry or in IT departments of major corporations. Wrox Beginning guides are crafted to make learning programming languages and technologies easier than you think, providing a structured, tutorial format that will guide you through all the techniques involved. 目录 Preface. Acknowledgements. 1. Before the Search. 2. The Job Application Process. 3. Approaches to Programming Problems. 4. Linked Lists. 5. Trees and Graphs. 6. Arrays and Strings. 7. Recursion. 8. Concurrany. 9. Object Oriented Programming. 10. Databases. 11. Other Programming Topics. 12. Counting, Measuring, and Ordering Puzzles. 13. Graphical and Spatial Puzzles. 14. Knowledge-Based Questions. 15. Non-Technical Questions. 16. Conclusion. Appendix. Resumes. Index.

2012-02-20

英文原版MCTS 70-536: Microsoft .NET Framework 2.0–Application Development Foundation

官方电子版,来自英文原版书籍随书光盘。 MCTS Self-Paced Training Kit (Exam 70-536) Microsoft .NET Framework 2.0–Application Development Foundation

2010-01-07

英文原版MCTS 70-562: Microsoft .NET Framework 3.5—ASP.NET Application Development

官方电子版,来自英文原版书籍随书光盘。 MCTS Self-Paced Training Kit (Exam 70-562): Microsoft .NET Framework 3.5—ASP.NET Application Development eBook

2010-01-07

数据挖掘经典书籍Morgan Kaufmann Data Mining Practical Machine Learning Tools And Techniques 2nd ed. 2005

Morgan.Kaufmann.Data.Mining.Practical.Machine.Learning.Tools.And.Techniques.2nd.ed.2005.pdf

2009-06-16

空空如也

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

TA关注的人

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