Is the LinkedList in .NET a circular linked list?

后端 未结 5 1434
隐瞒了意图╮
隐瞒了意图╮ 2021-02-05 06:56

I need a circular linked list, so I am wondering if LinkedList is a circular linked list?

5条回答
  •  死守一世寂寞
    2021-02-05 07:43

    If you need a circular data structure, have a look at the C5 generic collections library. They have any collection that's imaginably useful in there, including a circular queue (which might help you).

提交回复
热议问题