博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2010年7月3日

摘要: Arrays and ArrayListsThe array is the most common data structure, present in nearly all programminglanguages. Using an array in C# involves creating an array object ofSystem.Array type, the abstract base type for all arrays. The Array class providesa set of methods for performing tasks such as sorti 阅读全文

posted @ 2010-07-03 13:52 淡如水wp 阅读(1144) 评论(0) 推荐(0) 编辑

2010年6月27日

摘要: An Introduction to Collections, Generics,and the Timing Class集合,泛型,时间类的介绍This book discusses the development and implementation of data structuresand algorithms using C#. The data structures we use in this book are foundin the .NET Framework class library System.Collections. In this chapter, wedevel 阅读全文

posted @ 2010-06-27 23:41 淡如水wp 阅读(790) 评论(0) 推荐(0) 编辑

2010年6月18日

摘要: The study of data structures and algorithms is critical to the developmentof the professional programmer. There are many, many books written ondata structures and algorithms, but these books are usually written as collegetextbooks and are written using the programming languages typically taughtin co 阅读全文

posted @ 2010-06-18 00:41 淡如水wp 阅读(548) 评论(0) 推荐(0) 编辑

摘要: 1--介绍 集合,泛型和时间类2--数组,泛型数组3--基础排序4--基础查找5--栈和队列6--bit数组类7--字符串,String类,StringBuild类8--模式匹配和文字处理9--DictionaryBase和SortedList10-Hashing和HashTable类11-链表12-二叉树和二叉搜索树13-sets14-高级排序15-高级查找16-图17-高级算法 阅读全文

posted @ 2010-06-18 00:02 淡如水wp 阅读(288) 评论(0) 推荐(0) 编辑

2010年6月16日

摘要: DOS-stub and Signature----------------------The concept of a DOS-stub is well-known from the 16-bit-windows-executables (which were in the "NE" format). The stub is used forOS/2-executables, self-extr... 阅读全文

posted @ 2010-06-16 05:08 淡如水wp 阅读(365) 评论(0) 推荐(0) 编辑

2010年6月14日

摘要: Preface-------The PE ("portable executable") file format is the format of executablebinaries (DLLs and programs) for MS windows NT, windows 95 andwin32s; in windows NT, the drivers are in this format,... 阅读全文

posted @ 2010-06-14 10:11 淡如水wp 阅读(514) 评论(0) 推荐(1) 编辑

2010年6月10日

摘要: 这一周做LDAP做得头都大了。现在终于有点头绪了,记录一下,以备后用。LDAP是什么?LDAP是轻量级目录访问协议,英文全称是Lightweight Directory Access Protocol,一般都简称为LDAP.一般用来构建集中的身份验证系统可以减少管理成本,增强安全性,避免数据复制的问题,并提高数据的一致性。ActiveDirectory是什么?Active Directory存储了有关网络对象的信息,并且让管理员和用户能够轻松地查找和使用这些信息。Active Directory使用了一种结构化的数据存储方式,并以此作为基础对目录信息进行合乎逻辑的分层组织。①基础网络服务:包括 阅读全文

posted @ 2010-06-10 13:41 淡如水wp 阅读(27724) 评论(4) 推荐(1) 编辑

2010年6月1日

摘要: http://icuit.cn/bak/Release.rar基本原理是通过Request到html源码然后解析HTML标签。首先用System.Net.WebResponse,System.Net.WebRequest两个方法通过url获取到html的string.然后解析html标签,都说用正则是最合适的做法。但由于学疏才浅,用了第三方的库HtmlAgilityPack.可以像XML那样获取结点。HtmlAgilityPack有GetElementbyId,SelectSingleNode,SelectNodes,GetAttributeValue等方法,InnerHtml,InnerTe 阅读全文

posted @ 2010-06-01 17:39 淡如水wp 阅读(908) 评论(2) 推荐(0) 编辑

2010年5月21日

摘要: 需要下载的东西DevkitPSP: http://sourceforge.net/project/showfiles.php?group_id=114505&package_id=157350Codeblocks: http://www.codeblocks.org/1,安装 DevKitPSP和 Codeblocks.假设DevKitPSP安在 C:\DevKitPSP.2,打开 Cod... 阅读全文

posted @ 2010-05-21 16:13 淡如水wp 阅读(811) 评论(0) 推荐(0) 编辑

2010年5月19日

摘要: 添加一个http://api.showji.com/locating/Mobile.asmx的webservice引用Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Collections.Generic;using System.Text;using System.Threading;using System.Data;using System.Data.SQLite;namespace 阅读全文

posted @ 2010-05-19 21:22 淡如水wp 阅读(2582) 评论(0) 推荐(1) 编辑