<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>算法/线程</title>
<link>/html/edu/net/net12/index.html</link>
<description>编程开发 / ASP.NET / 算法/线程</description>
<language>zh-cn</language>
<generator>&lt;a href='http://www.souzz.net' target='_blank'&gt;搜站长&lt;/a&gt;</generator>
<webmaster>lyjrich@sina.com</webmaster>
<item>
    <title>(二)线程--通过委托异步调用方法</title>
    <link>/html/edu/net/net12/9474.html</link>
    <description>(一).描述 先运行个简单的线程示例，认识一下线程 通过委托调用方法,以及使用AsyncResult判断线程的状态 (二).代码 using System; using System.Threading; using System.Runtime.Remoting.Messaging; namespace 通过委托异步调用方法 { //委托声明(函数签名) delegate</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>(一)线程--简述线程概述及原理</title>
    <link>/html/edu/net/net12/9473.html</link>
    <description>线程是程序执行的基本原子单位. 一个进程可以由多个线程组成. 在分布式编程中，正确使用线程能够很好的提高应用程序的性能及运行效率. 实现原理是将一个进程分成多个线程，然后让它们并发异步执行,来提高运行效率. 并发执行并不是同时执行(占有CPU)，任意时刻还是只能</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>(七)线程--管理线程(使线程中止,暂停,挂起等)</title>
    <link>/html/edu/net/net12/9479.html</link>
    <description>(一).描述 此示例演示怎样设置线程的状态(中止,暂停,挂起等) (二).代码 using System; using System.Threading; namespace 管理线程_使线程中止_暂停_挂起等_ { //委托声明(函数签名) delegate string MyMethodDelegate(); class MyClass { public static void Method1</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>(三)线程--等待句柄</title>
    <link>/html/edu/net/net12/9475.html</link>
    <description>(一).描述 本示例代码实现线程等待等待执行,比如一个线程在执行之前要等待所有其它线程或某个线程 先执行完成,或者等待其它线程至少一个执行完成. (二).代码 using System; using System.Runtime.Remoting.Messaging; using System.Threading; namespace 等待句柄 { //</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>(四)线程--使用线程回调方法</title>
    <link>/html/edu/net/net12/9476.html</link>
    <description>(一).描述 此示例演示使用线程回调方法 (二).代码 using System; using System.Threading; using System.Runtime.Remoting.Messaging; namespace 回调 { //委托声明(函数签名) delegate string MyMethodDelegate(); class MyClass { //调用的方法 public static string</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>(五)线程--定制线程及设置和获取线程的优先级别</title>
    <link>/html/edu/net/net12/9477.html</link>
    <description>(一).描述 此示例演示怎样定制一个线程，并且设置线程的主要属性和获取线程运行时的状态 (二).代码 using System; using System.Threading; namespace 定制线程 { //委托声明(函数签名) //delegate string MyMethodDelegate(); class MyClass { public static void Met</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>(六)线程--分别用lock以及Interlicked和Monitor类实现线程的临界区操作(互斥)</title>
    <link>/html/edu/net/net12/9478.html</link>
    <description>一).描述 此示例演示分别用lock以及Interlicked和Monitor类实现线程的临界区操作(互斥) (二).代码 using System; using System.Threading; using System.Collections; namespace 加锁_实现临界区互斥操作_ { //委托声明(函数签名) delegate string MyMethodDelegate();</description>
    <pubDate>2006-01-08</pubDate>
    <category>算法/线程</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>在你的VB.NET应用程序中使用多线程</title>
    <link>/html/edu/net/net12/9071.html</link>
    <description>很长时间以来，开发人员一直要求微软为VB增加更多的线程功能——这一点在VB.NET中终于实现了。VB6不支持创建多线程的EXE、DLL以及OCX。但这种措词容易引起误解，这是因为VB6支持执行多个单线程的单元。一个单元实际上是代码执行的场所而且单元的边界限制了外部代码对单</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>不错的线程使用示例</title>
    <link>/html/edu/net/net12/9072.html</link>
    <description>//------------------------------------------------------------------------------ /// copyright from='1997' to='2001' company='Microsoft Corporation' ///Copyright (c) Microsoft Corporation. All Rights Reserved. /// ///This source code is intended only</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>浅析.Net下的多线程编程</title>
    <link>/html/edu/net/net12/9073.html</link>
    <description>多线程是许多操作系统所具有的特性，它能大大提高程序的运行效率，所以多线程编程技术为编程者广泛关注。目前微软的.Net战略正进一步推进，各种相关的技术正为广大编程者所接受，同样在.Net中多线程编程技术具有相当重要的地位。本文我就向大家介绍在.Net下进行多线程编</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>线程池跟自定义事件的应用例子</title>
    <link>/html/edu/net/net12/9074.html</link>
    <description>using System; using System.Threading; using System.Net; using System.Text; using System.Text.RegularExpressions; using System.IO; namespace ThreadPoolDelegate { //public delegate void ReceiveCompletedEventHandler(string url,string title,string source</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>VB.NET中的多线程</title>
    <link>/html/edu/net/net12/9075.html</link>
    <description>VB.NET中的多线程 介绍 多线程对VB的开发人员来说是一个新东西，VB的开发人员一直希望VB中包含这个特征，现在它出现VB.NET中。 多线程是Windows 95和Windows NT中的一个重要特征。多线程编程的能力需要系统的可靠设计，它等于要求确保CPU在线程之间切换不会导致不良事情</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用线程 -- ZT Microsoft.com</title>
    <link>/html/edu/net/net12/9076.html</link>
    <description>使用线程 Greg Ewing Clarity Consulting Inc. 2002 年 3 月 摘要：本文论述了各种模式的线程（单线程、单元线程和自由线程）以及每种模式的使用方法。同时，还提供了一个使用线程的 C# 语言代码示例，以帮助您编写使用线程的应用程序。本文还讨论了多线程代码中的一些</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>C#的多线程机制探索（续3）</title>
    <link>/html/edu/net/net12/9077.html</link>
    <description>五、互斥对象——更加灵活的同步方式 有时候你会觉得上面介绍的方法好像不够用，对，我们解决了代码和资源的同步问题，解决了多线程自动化管理和定时触发的问题，但是如何控制多个线程相互之间的联系呢？例如我要到餐厅吃饭，在吃饭之前我先得等待厨师把饭菜做好，</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>线程的实现</title>
    <link>/html/edu/net/net12/9070.html</link>
    <description>1．1．1 创建和使用线程 用户可以通过声明一个变量类型System.Threading来建立一个新的线程。并且还提供了一个AddressOf操作和一个用户想运行的过程或方法。例如： Dim mythread as New System.Threading.Thread(AddressOf MySub) 用户可以使用”Start”方法来开始一个</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>结合singleton和线程做一个定时服务(给蓝)</title>
    <link>/html/edu/net/net12/9069.html</link>
    <description>design pattern的singleton是一个虽然简单但很有用处的模式，它的作用就是使类只能有一个实例，不需要实例化，而提供一个唯一的全局切入点。如果再结合上线程，完全可以实现一个定时服务，不象Timer控件，它不仅可以应用在windows应用程序中，同样可以应用于web程序中，</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>线程处理</title>
    <link>/html/edu/net/net12/9068.html</link>
    <description>Visual Studio.NET允许用户开发多条互不相干的多线程的应用程序。也就是说，当用户在执行一个程序的时候，也可以在另外一条的线程独立地运行另外一个任务程序，这种过程被称为自由线程(Free Threading)，对于用户而言，自由线程概念的引入，使得应用程序对用户的响应将</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>在你的服务器端代码中使用线程和创建异步处理</title>
    <link>/html/edu/net/net12/9060.html</link>
    <description>小结： 对于开发者来说幸运的是：线程在asp.net中远远比在asp中来的容易。本篇文章中，作者注视线程于asp.net http pipeline中，同时解释线程在开发者没有卷入的情况是如何被高效管理的。 本篇文章考虑CLR线程池是如何被asp.net 服务请求使用的，还有池在处理，模型，和</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>在你的服务器端代码中使用线程和创建异步处理(2)</title>
    <link>/html/edu/net/net12/9061.html</link>
    <description>线程处理对于IIS5和IIS6是不同的是不同的，我会简短地讨论一下这个问题。对于来的每一个请求，一个新的实例就会被创建，为了避免过于频繁的分配应用和模块，每一个应用域维护了应用和模块的池。每个应用池的最大值是和线程池的大小一致的，因此默认上来说，上限为25个工</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>在.NET客户端程序中应用多线程</title>
    <link>/html/edu/net/net12/9062.html</link>
    <description>在.NET客户端程序中应用多线程 原著：Jason Clark 翻译：lxhui 原文出处：MSDN Magazine Jan 2004(.NET) 原代码下载: NET0401.exe (118KB) 通常认为在编写程序中用到多线程是一个高级的编程任务，容易发生错误。在本月的栏目中，我将在一个Windowsreg;窗体应用程序中使</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>C#的多线程机制探索（续1）</title>
    <link>/html/edu/net/net12/9063.html</link>
    <description>在这里我们要注意的是其它线程都是依附于Main()函数所在的线程的，Main()函数是C#程序的入口，起始线程可以称之为主线程，如果所有的前台线程都停止了，那么主线程可以终止，而所有的后台线程都将无条件终止。而所有的线程虽然在微观上是串行执行的，但是在宏观上你完全</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>C#的多线程机制探索（续2）</title>
    <link>/html/edu/net/net12/9064.html</link>
    <description>然后在下面这个类MonitorSample的Main()函数中我们要做的就是创建两个线程分别作为生产者和消费者，使用CellProd.ThreadRun()方法和CellCons.ThreadRun()方法对同一个Cell对象进行操作。 public class MonitorSample { public static void Main(String[] args)</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>微软SQL Server 2000 Reporting Services介绍(五)</title>
    <link>/html/edu/net/net12/9065.html</link>
    <description>微软SQL Server 2000 Reporting Services介绍(五) [摘要 ] 本文主要介绍了如何综合利用Report Designer和修改rdl文件来快速、灵活的实 现报表氐憬步饬似渲?lt;/SPANMatrix格式和Toggle功能的实现 [关键字] Reporting Services,.NET Framework.,rdl文件,Matrix格式,Tog</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>NET平台下Web树形结构程序设计</title>
    <link>/html/edu/net/net12/9066.html</link>
    <description>.NET平台下Web树形结构程序设计 我的上篇文章《树形结构在开发中的应用》主要是在Windows Form下的实现，下面是Web Form下的实现。 数据库设计 首先，我们在SQL SERVER 2000里建立一个表tbTree，表的结构设计如下： 列名 数据类型 描述 长度 主键 ID Int 节点编号 4 是</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>老外编的程序（七）：Timed Thread Example</title>
    <link>/html/edu/net/net12/9067.html</link>
    <description>using System; using System.Threading; class App { public static void Main() { Console.WriteLine(Checking for status updates every 2 seconds.); Console.WriteLine((Hit Enter to termiante the sample)); Timer timer = new Timer(new TimerCallback(CheckStat</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>处理WinForm多线程程序时的陷阱</title>
    <link>/html/edu/net/net12/9078.html</link>
    <description>与所有的UI开发平台一样，.NET下线程开发图形界面同样要遵循一个基本原则：就是对UI对象的操作一定要在产生该UI对象的线程里进行（该线程称作UI线程），因为大部分UI对象都不是线程安全的。 在.NET中，把调用调用放在UI线程里执行是通过Form类及其子类的Invoke（）方法</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>遗传算法在试题组卷中的应用</title>
    <link>/html/edu/net/net12/9079.html</link>
    <description>遗传算法在试题组卷中的应用 ，我用c＃的windows下编写遗传算法，不知道哪位高手可以帮我解决燃眉之急啊？我现在的水平真是没办法编写这个遗传算法啊，求助！下面是有关遗传算法的介绍。 遗传算法描述 遗传算法是一种并行的、能够有效优化的算法，以Morgan的基因理论及</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>如何在调用线程的时候传递参数</title>
    <link>/html/edu/net/net12/9097.html</link>
    <description>我们在写Remoting程序或者其他的一些应用程序的时候难免要和线程打交道，.Net使我们很容易就可以创建一个线程，但是它提供的创建线程和启动线程的方法没有明显的提供参数，假如我们要用线程来启动类里面一个带参数的方法该怎么办？下面就简单的介绍如何使用.NET提供的丰</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>MD5加密算法在VB中的实现</title>
    <link>/html/edu/net/net12/9096.html</link>
    <description>' MD5加密算法在VB中的实现 Option Explicit Dim w1 As String, w2 As String, w3 As String, w4 As String Function MD5F(ByVal tempstr As String, ByVal w As String, ByVal X As S tring, ByVal y As String, ByVal z As String, ByVal Xin As String, ByVa l qdata</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>在你的服务器端代码中使用线程和创建异步处理(结束)</title>
    <link>/html/edu/net/net12/9095.html</link>
    <description>用定制线程异步处理者 为了创建一个真正的异步处理者, 你必须在BeginProcessRequest响应中手工生成额外的线程.成功创建异步处理者有3个重要的特征. 一 构造一个支持IAsyncResult的类从BeginProcessRequest 返回. 二, 生成个线程执行你的请求异步处理. 三, 通知asp.net</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>.Net线程学习手记(1)</title>
    <link>/html/edu/net/net12/9094.html</link>
    <description>线程确实是一个好东西，可以让你可以同时作多个不同的处理。 .Net中新增了一个隔离层，称为应用程序域（AppDomain），它是进程内部一个逻辑独立部分。在一个进程中可以存在多个应用程序域。应用程序域可以保存一个或多个线程，就像进程一样。不同之处在于：应用程序域可</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>delegate 与 多线程</title>
    <link>/html/edu/net/net12/9093.html</link>
    <description>很多时候写windows程序都需要结合多线程，在.net中用如下得代码来创建并启动一个新的线程。 public void ThreadProc(); Thread thread = new Thread( new ThreadStart( ThreadProc ) ); thread.IsBackground = true; thread.Start(); 但是很多时候，在新的线程中，我们</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>MD5算法研究</title>
    <link>/html/edu/net/net12/9092.html</link>
    <description>-摘抄于网络 MD5算法研究 md5的全称是message-digest algorithm 5（信息-摘要算法），在90年代初由mit laboratory for computer science和rsa data security inc的ronald l. rivest开发出来，经md2、md3和md4发展而来。它的作用是让大容量信息在用数字签名软件签署私人</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>详解对密码执行散列和 salt 运算方法</title>
    <link>/html/edu/net/net12/9091.html</link>
    <description>大家对密码执行散列和Salt运算一定不陌生。两个Visual Studio企业版示例都是用的这个方法来加密这个方法的。结合示例代码，我总结了一个包含对密码进行加密，比较等静态方法的类。 使用说明：先用HashAndSalt方法对密码进行加密，然后存储到数据库中。 在用户登录时用C</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>MD5算法实现</title>
    <link>/html/edu/net/net12/9090.html</link>
    <description>MD5算法实现 1、MD5算法是对输入的数据进行补位，使得如果数据位长度LEN对512求余的结果 是448。 即数据扩展至K*512+448位。即K*64+56个字节，K为整数。 具体补位操作：补一个1，然后补0至满足上述要求 2、补数据长度： 用一个64位的数字表示数据的原始长度B，把B用两个</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>字符串转换成十六进制</title>
    <link>/html/edu/net/net12/9089.html</link>
    <description></description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>多线程应用程序中调用窗体的一点心得</title>
    <link>/html/edu/net/net12/9088.html</link>
    <description>昨天自己编写一个多线程的程序，主要作用是TCP通迅的小程序，里面使用了多线程的技术，遇到一个有趣的问题：就是在工作线程中我调用了一个窗体，让它显示出来。如Form1 f=new Form1();f.show();这种代码平时一点问题都没有。但是在工作线程中却无法调过了。我的FORM1在</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>穷举彩票号码的通用过程</title>
    <link>/html/edu/net/net12/9086.html</link>
    <description>Text1输入数字总个数；Text2输入每组的数字个数；App.Path &quot;\1.txt&quot;用于看输出结果；Label1用于显示组个数；Command1就是执行按钮。这是一个穷举组合结果的万能代码。 Option Explicit Private mlngAllNumCount As Long, mlngGetNumCount As Long Private mblnCancelPro</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>asp.net利用多线程执行长时间的任务，客户端显示出任务的执行进度的示例（二）</title>
    <link>/html/edu/net/net12/9085.html</link>
    <description>http://blog.csdn.net/LoveCherry/archive/2005/04/10/342078.aspx 对上一次的做一点修改，增加一个比较美观的进度显示 上面那个是运行中的画面，下面那个是结束后的画面 用到的图标在这里： 对上次的前台修改如下： %@ Page language=&quot;c#&quot; Codebehind=&quot;WebForm54.aspx</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>用Long型数组进行文件比对</title>
    <link>/html/edu/net/net12/9084.html</link>
    <description>此文件比对基于二进制，最大特点，使用了Long型数组，采用32系统最擅长的数据类型进行比对，速度明显快于Byte数组。 Option Explicit Private CencelCopy As Boolean Private Declare Sub CopyMemory Lib &quot;kernel32&quot; Alias &quot;RtlMoveMemory&quot; (pDest As Any, pSource As</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>多线程编程学习笔记（六）</title>
    <link>/html/edu/net/net12/9083.html</link>
    <description>多线程编程学习笔记（六） 线程局部存储(TLS) 存放局部存储步骤： 1、申请数据槽 LocalDataStoreSlot slot = Thread.GetNamedDataSlot(&quot;para&quot;); 如果不存在名为para的数据槽，将分配一个所有线程均可用的para数据槽 2、往数据槽存放数据 MyPara para = new MyPara(); p</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>asp.net利用多线程执行长时间的任务，客户端显示出任务的执行进度的示例（一）</title>
    <link>/html/edu/net/net12/9087.html</link>
    <description>在asp.net中执行一个长时间的操作，有的时候需要在在客户端有一个反馈能了解到任务的执行进度，大致看了一下有这么几种做法： （1）按下按钮的时候给出一个div提示正在执行任务，执行完毕让这个div隐藏 （2）按下按钮的时候跳转到一个提示任务正在执行的页面，执行完毕</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>对“学号”、“身份证”的数字分析</title>
    <link>/html/edu/net/net12/9081.html</link>
    <description>问题的提出： 在现代社会中，一个人总是离不开数字。人在社会上总要有一个身份证号码，学生在学校里读书一定会有一个学号，而且这些号码不都是一些无意义的数字。我写的这个程序是用来分析这些数字，并把其中有意义的意思表达出来。 编程环境： VS.NET 实现技术： ASP.</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>对“学号”、“身份证”的数字分析（2）</title>
    <link>/html/edu/net/net12/9080.html</link>
    <description>摘要： 对身份证号码的分析同对学号的分析类似。 正文： 这里认为身份证号是18位的。 在页面上添加一个Label控件，一个TextBox控件，一个Button控件，一个Literal控件。Label控件的Text属性设为“身份证号：”，Literal控件将显示身份证号里的信息。关键还是在Button控</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>切开一个字符串放到数组里面</title>
    <link>/html/edu/net/net12/9082.html</link>
    <description>private void CutStringToArray(ref string[,] StrArray,string StrWillCut,int NoUseNumber,int MainNum,int SubNum,string Symbol)//切开一个字符串放到数组里面，StrArray是你要放字符串的数组，StrWillCut是你要切得字符串，NoUseNumber，MainNum和SubNum可以都为0</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>Huffman 编码简介（讲解的更好一些，有C的分析）</title>
    <link>/html/edu/net/net12/9037.html</link>
    <description>Huffman 编码简介 在一般的数据结构的书中，树的那章后面，著者一般都会介绍一下哈夫曼(HUFFMAN)树和哈夫曼编码。哈夫曼编码是哈夫曼树的一个应用。哈夫曼编码应用广泛，如JPEG中就应用了哈夫曼编码。 首先介绍什么是哈夫曼树。哈夫曼树又称最优二叉树，是一种带权路径</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>将字符串中的数字和字符分离的技术例如（the9 city)分解成（the city)和9</title>
    <link>/html/edu/net/net12/9029.html</link>
    <description>原始字符串 string completeString = the9 city; 转换完成的字符串 string stringVal = the city; int numericVal = 9; aspx文件 %@ Page language=c# Codebehind=StringParser.aspx.cs AutoEventWireup=false Inherits=HowTo._20020221.StringParser % !DOCTYPE HTML P</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>LinkedQueue的实现</title>
    <link>/html/edu/net/net12/9030.html</link>
    <description>public class LinkedQueue { private class Node { public object Data; public Node Link; } private Node front; private Node rear; public LinkedQueue() { } public bool IsEmpty { get { return front == null; } } public bool IsFull { get { Node p; try { p =</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>密码的故事 (ST:MS,Author:Billy Hollis )</title>
    <link>/html/edu/net/net12/9031.html</link>
    <description>密码的故事 2002 年 3 月 14 日 本文是由一个问题引出的。我需要一种将密码保存在加密文件中的方法，因为我需要记住许多密码，但记忆力却已大不如前。我知道有许多商用工具能够做到这一点，但我感到学习 .NET 中的一项新技术真的很有好处。 我用 Visual Basic .NET 完</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>
<item>
    <title>给贝贝的，Base64编码（带有Q和B编码）——VB.NET</title>
    <link>/html/edu/net/net12/9033.html</link>
    <description>Option Strict Off Option Explicit On Option Compare Text Imports Microsoft.VisualBasic.Compatibility Namespace Blood.Com.ClassLib Public Class Security Private pbBase64Byt(63) As Byte Private Const BASE64CHR As String = ABCDEFGHIJKLMNOPQRSTUVWXYZabcd</description>
    <pubDate>2006-01-05</pubDate>
    <category>算法/线程</category>
    <author>秩名</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
