悟生慧

 

2012年8月20日

鸡尾酒排序算法

摘要: static int[] intArray;//定义要排序的数组 #region 两个数互换位置 /// <summary> /// 两个数互换位置 /// </summary> /// <param name="left">第一个数</param> /// <param name="right">第二个数</param> static void Change(ref int left, ref int right) { int temp;//临时变量 temp = left;//记 阅读全文

posted @ 2012-08-20 12:15 悟生慧 阅读(894) 评论(0) 推荐(0) 编辑

C#字符串加密和解密

摘要: using System.Security.Cryptography;using System.IO;//默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; /// <summary> /// DES加密字符串 /// </summary> /// <param name="encryptString">待加密的字符串</param> /// <param name="encryptKey 阅读全文

posted @ 2012-08-20 10:57 悟生慧 阅读(11250) 评论(0) 推荐(2) 编辑

导航