本文介绍了如何将一个数组拆分为分别具有奇数和偶数索引的2个数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将一个数组拆分为分别具有奇数和偶数索引的2个数组?例如,
How to split an array to 2 arrays with odd and even indices respectively? For example
int[] a = new int[]{1, 3, 7, 8};
然后得到两个数组
推荐答案
使用包含以下索引:
int[] a = new int[] { 1, 3, 7, 8 };
int[] aEven = a.Where((x, i) => i % 2 == 0).ToArray();
int[] aOdd = a.Where((x, i) => i % 2 != 0).ToArray();
这篇关于如何将一个数组拆分为分别具有奇数和偶数索引的2个数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!