摘要: 奇偶分割:using System;using System.Collections.Generic;using System.Text;namespace NET.MST.Thirteenth.EvenOddPartition{ partial class EvenOddPartition { /// <summary> /// 测试奇偶分割算法 /// </summary> static void Main(string[] args) { int[] data = new int[] { 1, 2, 3, 4, 5, 6, 7, 8 }; PrintArray(d 阅读全文
posted @ 2011-05-28 00:16 brainmao 阅读(394) 评论(0) 推荐(0) 编辑