
Patrick B. answered 08/08/21
Math and computer tutor/teacher
_LAST is the last node in the list;
_FIRST is the first node in the list;
Simply do:
_LIST->next = NULL
_FIRST->prev=NULL
you may now treat it as a doubly linked list, that is NOT circular,
as the links which make it circle have been broken (set to NULL)
Why would one want to sacrifice this type of nice feature ?