. Form a model of double-linked list: a) using pointer tail to last element; b)
ID: 1947504 • Letter: #
Question
. Form a model of double-linked list:a) using pointer tail to last element;
b) without using pointer tail to last element;
c) developing circular list,
make a description of it and develop list processing operation Insert to add a new element:
a) in the beginning of list;
b) in the end of list;
c) after the i-th element;
d) before i-th element.