2007年1月9日

摘要: 【导读】本文介绍了C#的四种排序算法:冒泡排序、选择排序、插入排序和希尔排序 冒泡排序using System;namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1; while((j<list.Length... 阅读全文
posted @ 2007-01-09 08:56 房客 阅读(719) 评论(0) 推荐(0)
摘要: 转自:作者:lvvl 来源:赛迪网安全社区 发布时间:2006.12.14http://security.ccidnet.com/art/1099/20061213/974213_1.html最基本的隐藏:不可见窗体+隐藏文件 木马程序无论如何神秘,但归根究底,仍是Win32平台下的一种程序。Windows下常见的程序有两种: 1.Win32应用程序(Win32 Application),比如... 阅读全文
posted @ 2007-01-09 08:52 房客 阅读(352) 评论(0) 推荐(0)

导航