Opportunities  : Innovative computing structure  for organizing or storing data.
                 a circular linked list ...in which each structure can be identified
                 as a element of different type or each structure is unique (say 
                 store's data of different kind)

                 A linked list that knots or that can uniquely traverse each of

                 unique elements (i.e. a linked list that traverses unique elements
                 formed out of several circular linked lists)



                It can be safely presumed that each or the structure used in the
                above can have multiple pointer's (innovative struct design)

a vision or sketch of the above illustration

                 linked list       linked list  linked list     
                  element1          element2    element3
                     |                 |           |
                     v                 v           v
Linked list 1     element1          element2    element3----circular points to elment1 in list1
                     |                 |           |
                     v                 v           v
Linked list 2     element1          element2    element3----circular points to elment1 in list2
                     |                 |           |
                     v                 v           v
Linked list 2     element1          element2    element3----circular points to elment1 in list2


Objective: Encode the above sketch or design in various programming languague's
           and find various use-case scenario's to use the above kind of storage
           structure.
                                
 Note: The above problem statement having been encountered in various scenarios
      and detailed in various 'Proof of concepts' as mentioned in 
      
       http://uk.geocities.com/ravivenkatus/projects.pdf
       http://ravishankarkv.tripod.com/projects.pdf
        ....apply appropriate
      'use-case' modeling, rationalize and arrive at a workable and feasible 
       solution both commercially and techinically viable.


   
   