双链表练习   #include <stdio.h> #include <stdlib.h> typedef struct intnode {     int data;     struct intnode* prev;     struct intnode* next; } node; void swap(node* p...