gpt4 book ai didi

c# - C#如何逆序遍历LinkedList

转载 作者:太空狗 更新时间:2023-10-29 19:58:45 25 4
gpt4 key购买 nike

如何使用 C# LinkedList 执行与以下 C++ 片段等效的操作?

std::list<MyClass*>::reverse_iterator itr(it); 
for(; itr != MyList.rend(); ++itr)

最佳答案

作为 1-off,类似于:

var el = list.Last;
while (el != null) {
// use el.Value
el = el.Previous;
}

如果您经常这样做,可能会使用类似的迭代器 block 来生成所有值:

public static IEnumerable<T> Reverse<T>(this LinkedList<T> list) {
var el = list.Last;
while (el != null) {
yield return el.Value;
el = el.Previous;
}
}

然后:

foreach(var val in list.Reverse()) {
// use val
}

关于c# - C#如何逆序遍历LinkedList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8193806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com