随笔分类 -  算法

MD5
摘要:(转载自:http://blog.chinaunix.net/uid-20725556-id-1885710.html) MD5的全称是Message-Digest Algorithm 5(信息-摘要算法),在90年代初由MIT Laboratory for Computer Science和... 阅读全文
posted @ 2015-09-28 22:45 AzzStyle 阅读(359) 评论(0) 推荐(0)
将整数100 随机分成 10段
摘要:static void Main(string[] args) { int[] a=new int[101]; Random r = new Random(); int IntervalCount=10; ... 阅读全文
posted @ 2015-05-08 12:26 AzzStyle 阅读(1089) 评论(2) 推荐(1)