Declaration:
typedef struct ListElement
{
struct ListElement *next;
int data;
} ListElement;
typedef struct DoublyLinkedList
{
struct DoublyLinkedList *next;
struct DoublyLinkedList *prev;
int data;

No comments:
Post a Comment