Definition:
A generalized linked list ‘A’ is a finite sequence of ‘n’ elements,(a1,a2,a3….. an), where ‘ai’ may be either atom or a list. The element which are not atoms are called sub list of A.
- if all elements are atoms, then it is a simple list
- The node structure of GLL is
e.g.
Polynomial Representation Using GLL:
Examples of GLL:
1. A = (a, (b, c))