void deleteAll(Node *root)

{

Node *q = root->fwd;

Node* next = q->fwd;


do

{

free(q);

q = next;

next = next->fwd;

} while (next);

}