双向链表Doubly Linked List list结构体 实现以下6个接口 双向链表Doubly Linked List完整源码(定义,实现,main函数测试) list结构体 typedef struct list { double value; ///< value saved on each node struct list *next, *prev; ///< directing to other nodes or NULL } List;