Is the LinkedList in .NET a circular linked list?

后端 未结 5 1441
隐瞒了意图╮
隐瞒了意图╮ 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:33

    No. It is a doubly linked list, but not a circular linked list. See MSDN for details on this.

    LinkedList makes a good foundation for your own circular linked list, however. But it does have a definite First and Last property, and will not enumerate around these, which a proper circular linked list will.

提交回复
热议问题