Form a model of sorted list using: a) array representation; b) single-linked lis
ID: 1947527 • Letter: F
Question
Form a model of sorted list using:a) array representation;
b) single-linked list with pointer tail to the last element;
c) single-linked list without pointer tail to the last element;
d) developing single-linked circular list;
e) double-linked list with pointer tail to the last element;
f) double-linked list without pointer tail to the last element;
g) developing double-linked circular list,
make a description of it and develope sorted list processing operations:
a) FindKey, Delete (previous element becomes a new current element), Terminate;
b) Update, Findith, Delete (next element becomes a new current element);
c) Insert, FindKey, FindFirst,.
d) Findith, Update, FindPrior, FindLast