摘要:
奇偶分割: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 阅读全文