#include #include struct node{ int value; struct node *next; struct node *previous; }; struct list{ struct node *head; s