solving a program using linked lists

I need to solve a program using linked lists...the program details are as follows.this is a hierarchy of employee and supervisor.how will i print the names of the respective employees and supervisors whichever i need?
[245 byte] By [puspaa] at [2007-11-27 7:08:23]
# 1

> I need to solve a program using linked lists...

> the program details are as follows.

> this is a hierarchy of employee and supervisor.

> how will i print the names of the respective

> employees and supervisors whichever i need?

By using the methods specified in the API:

http://java.sun.com/j2se/1.5.0/docs/api/java/util/LinkedList.html

prometheuzza at 2007-7-12 18:59:53 > top of Java-index,Core,Core APIs...
# 2
first findout how to represent a tree in the form of linked list (from question i felt like this) then use the LinkedList API specified by prometheuzz vijay
bhvijaya at 2007-7-12 18:59:53 > top of Java-index,Core,Core APIs...