随笔分类 -  算法研究

摘要:1 class Program 2 { 3 static void Main(string[] args) 4 { 5 string s1 = "abcdefghijklmn"; 6 stri... 阅读全文
posted @ 2014-05-14 14:04 亦心 阅读(1399) 评论(0) 推荐(0) 编辑
摘要:[代码][代码][代码][代码] 阅读全文
posted @ 2009-12-28 21:43 亦心 阅读(1706) 评论(2) 推荐(3) 编辑
摘要:项目中经常要用到json格式的数据,把收集和整理的转换json数据的方法发布如下:在.net framework2.0中,没有JavaScriptSerializer(3.0)和DataContractJsonSerializer(3.5),所以经常要用手写的转换类,这样调试也方便些,何况JavaScriptSerializer和DataContractJsonSerializer还有一些对特殊字... 阅读全文
posted @ 2009-12-14 21:31 亦心 阅读(2009) 评论(5) 推荐(6) 编辑
摘要:private static void Demo() { List<int[]> list = new List<int[]>(); list.Add(new int[] { 3, 4 }); list.Add(new int[] { 3, 5 }); list.Add(new int[] { 3, 8 }); list.Add(new int[] { 6, 4 }); l... 阅读全文
posted @ 2009-11-20 15:24 亦心 阅读(348) 评论(0) 推荐(0) 编辑
摘要:[代码] 阅读全文
posted @ 2009-11-19 13:24 亦心 阅读(349) 评论(1) 推荐(0) 编辑
摘要:要求:不允许使用库函数及外部库,不允许使用现成的排序算法和哈希算法函数1、两个元素之差的最大值private static void GetMaxMin(int[] arrys) { //int[] arrys = new int[] { 3, 5, 1, 6, 9, 8, 4, 7, 2 }; int max = arrys[0]; int min = arrys[0]; for (int i ... 阅读全文
posted @ 2009-11-19 13:16 亦心 阅读(1138) 评论(0) 推荐(0) 编辑