the linked list should be like this
class MyDoublyLinkedL ist
{
Node first;
Node last;
public void Add(object obj)
{
}
public void Remove(object obj)
{
}

}
class Node
{
Node next;
Node prev;
object value
}
and so on for other method (Clone,copy,ins ert);
i want the implementation for this mehods

...