Pythonスライス操作と同等のC#とは何ですか?
my_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
result1 = my_list[2:4]
result2 = my_list[1:]
result3 = my_list[:3]
result4 = my_list[:3] + my_list[4:]
その一部はここで説明されています 、しかしいです そして、スライシングのすべての使用に対処していません 明らかに質問に答えていないという点まで。
List
がある場合 GetRange が役立ちます。
MSDNリンクから:
参照型のコレクションまたはそのコレクションのサブセットの浅いコピーには、コレクションの要素への参照のみが含まれます。オブジェクト自体はコピーされません。新しいリストの参照は、元のリストの参照と同じオブジェクトを指します。
Slice
関数は次のようになります。
public static IEnumerable<T> Slice<T>(this List<T> source, int from, int to) => source.GetRange(from, to - from);
pythonスライスがサポートする負の範囲も、ある程度の清浄度を失って処理できます。
この方法では、減算する必要はありません
public static IEnumerable<A> Slice<A> (int from, int to, IEnumerable<A> e) {
return e.Take (to).Skip (from);
}
public static T[] slice<T>(T[] l, int from, int to)
{
T[] r = new T[to - from];
for (int i = from; i < to; i++)
{
r[i-from]=l[i];
}
return r;
}
カスタム拡張機能を作成します。
public static List<T> Slice<T>(this List<T> li, int start, int end)
{
if (start < 0) // support negative indexing
{
start = li.Count + start;
}
if (end < 0) // support negative indexing
{
end = li.Count + end;
}
if (start > li.Count) // if the start value is too high
{
start = li.Count;
}
if (end > li.Count) // if the end value is too high
{
end = li.Count;
}
var count = end - start; // calculate count (number of elements)
return li.GetRange(start, count); // return a shallow copy of li of count elements
}
いくつかのテスト:
[Fact]
public void Slice_list()
{
var li1 = new List<char> {'a', 'b', 'c', 'd', 'e', 'f', 'g'};
Assert.Equal(new List<char> {'c', 'd'}, li1.Slice(2, 4));
Assert.Equal(new List<char> {'b', 'c', 'd', 'e', 'f', 'g'}, li1.Slice(1, li1.Count));
Assert.Equal(new List<char> {'a', 'b', 'c'}, li1.Slice(0, 3));
Assert.Equal(li1, li1.Slice(0, 4).Concat(li1.Slice(4, li1.Count)));
Assert.Equal(li1, li1.Slice(0, 100));
Assert.Equal(new List<char>(), li1.Slice(100, 200));
Assert.Equal(new List<char> {'g'}, li1.Slice(-1, li1.Count));
Assert.Equal(new List<char> {'f', 'g'}, li1.Slice(-2, li1.Count));
Assert.Equal(new List<char> {'a', 'b', 'c', 'd', 'e', 'f'}, li1.Slice(0, -1));
Assert.Equal(new List<char> {'c', 'd', 'e'}, li1.Slice(2, -2));
}