我想知道是否有内置的.NET功能可以根据提供的委托的结果更改数组中的每个值。例如,如果我有一个数组{1,2,3}
和一个返回每个值的平方的委托,我希望能够运行一个接受数组和委托的方法,并返回{1,4,9}
。这样的事情是否存在?
答案 0 :(得分:30)
LINQ使用Select扩展方法支持投影:
var numbers = new[] {1, 2, 3};
var squares = numbers.Select(i => i*i).ToArray();
您还可以使用稍微不那么流利的Array.ConvertAll方法:
var squares = Array.ConvertAll(numbers, i => i*i);
可以通过嵌套投影来处理锯齿状数组:
var numbers = new[] {new[] {1, 2}, new[] {3, 4}};
var squares = numbers.Select(i => i.Select(j => j*j).ToArray()).ToArray();
多维数组稍微复杂一些。我编写了以下扩展方法,该方法将多维数组中的每个元素投影,无论其等级如何。
static Array ConvertAll<TSource, TResult>(this Array source,
Converter<TSource, TResult> projection)
{
if (!typeof (TSource).IsAssignableFrom(source.GetType().GetElementType()))
{
throw new ArgumentException();
}
var dims = Enumerable.Range(0, source.Rank)
.Select(dim => new {lower = source.GetLowerBound(dim),
upper = source.GetUpperBound(dim)});
var result = Array.CreateInstance(typeof (TResult),
dims.Select(dim => 1 + dim.upper - dim.lower).ToArray(),
dims.Select(dim => dim.lower).ToArray());
var indices = dims
.Select(dim => Enumerable.Range(dim.lower, 1 + dim.upper - dim.lower))
.Aggregate(
(IEnumerable<IEnumerable<int>>) null,
(total, current) => total != null
? total.SelectMany(
item => current,
(existing, item) => existing.Concat(new[] {item}))
: current.Select(item => (IEnumerable<int>) new[] {item}))
.Select(index => index.ToArray());
foreach (var index in indices)
{
var value = (TSource) source.GetValue(index);
result.SetValue(projection(value), index);
}
return result;
}
上述方法可以使用等级3的数组进行测试,如下所示:
var source = new int[2,3,4];
for (var i = source.GetLowerBound(0); i <= source.GetUpperBound(0); i++)
for (var j = source.GetLowerBound(1); j <= source.GetUpperBound(1); j++)
for (var k = source.GetLowerBound(2); k <= source.GetUpperBound(2); k++)
source[i, j, k] = i*100 + j*10 + k;
var result = (int[,,]) source.ConvertAll<int, int>(i => i*i);
for (var i = source.GetLowerBound(0); i <= source.GetUpperBound(0); i++)
for (var j = source.GetLowerBound(1); j <= source.GetUpperBound(1); j++)
for (var k = source.GetLowerBound(2); k <= source.GetUpperBound(2); k++)
{
var value = source[i, j, k];
Debug.Assert(result[i, j, k] == value*value);
}
答案 1 :(得分:20)
不是我知道(替换每个元素而不是转换为新的数组或序列),但是编写起来非常容易:
public static void ConvertInPlace<T>(this IList<T> source, Func<T, T> projection)
{
for (int i = 0; i < source.Count; i++)
{
source[i] = projection(source[i]);
}
}
使用:
int[] values = { 1, 2, 3 };
values.ConvertInPlace(x => x * x);
当然,如果你真的没有需要来更改现有数组,那么使用Select
发布的其他答案将更有用。或者来自.NET 2的现有ConvertAll
方法:
int[] values = { 1, 2, 3 };
values = Array.ConvertAll(values, x => x * x);
这都是假设一维数组。如果你想要包含矩形数组,它会变得更加棘手,特别是如果你想避免装箱。
答案 2 :(得分:5)
使用System.Linq,您可以执行以下操作:
var newArray = arr.Select(x => myMethod(x)).ToArray();
答案 3 :(得分:2)
LINQ查询可以轻松解决此问题 - 确保您引用System.Core.dll并拥有
using System.Linq;
语句。例如,如果您的数组位于名为numberArray的变量中,则以下代码将为您提供您正在寻找的内容:
var squares = numberArray.Select(n => n * n).ToArray();
只有在您确实需要一个数组而不是一个IEnumerable&lt; int&gt;时才需要进行最后的“ToArray”调用。
答案 4 :(得分:1)
您可以使用linq以速记方式完成此操作,但要小心记住,无论如何都会在下面发生foreach。
int[] x = {1,2,3};
x = x.Select(( Y ) => { return Y * Y; }).ToArray();
答案 5 :(得分:1)
这是M x N阵列的另一种解决方案,其中M和N在编译时是未知的。
// credit: https://blogs.msdn.microsoft.com/ericlippert/2010/06/28/computing-a-cartesian-product-with-linq/
public static IEnumerable<IEnumerable<T>> CartesianProduct<T>(IEnumerable<IEnumerable<T>> sequences)
{
IEnumerable<IEnumerable<T>> result = new[] { Enumerable.Empty<T>() };
foreach (var sequence in sequences)
{
// got a warning about different compiler behavior
// accessing sequence in a closure
var s = sequence;
result = result.SelectMany(seq => s, (seq, item) => seq.Concat<T>(new[] { item }));
}
return result;
}
public static void ConvertInPlace(this Array array, Func<object, object> projection)
{
if (array == null)
{
return;
}
// build up the range for each dimension
var dimensions = Enumerable.Range(0, array.Rank).Select(r => Enumerable.Range(0, array.GetLength(r)));
// build up a list of all possible indices
var indexes = EnumerableHelper.CartesianProduct(dimensions).ToArray();
foreach (var index in indexes)
{
var currentIndex = index.ToArray();
array.SetValue(projection(array.GetValue(currentIndex)), currentIndex);
}
}