difference between double-ended linked lists and doubly-linked list

前端 未结 3 1640
小鲜肉
小鲜肉 2021-02-07 16:57

I don\'t understand difference between a double-ended and doubly-linked list.

What is the major difference between the two?

3条回答
  •  名媛妹妹
    2021-02-07 18:04

    A doubly linked list is a list where the elements have pointers to both the element before and after in the list.

    A double ended list is from my understanding the same as a deque. That is a queue from which you can add and remove items from both the top and the bottom.

提交回复
热议问题