双链表的创建与输出
双链表的创建与输出//双链表#include<stdio.h>#include<stdlib.h>typedef int Element;typedef struct DNode{Element da
双链表的创建与输出