双向链表的创建C++中如何编写一个程序实现双向链表的建立,插入和删除
双向链表的创建C++中如何编写一个程序实现双向链表的建立,插入和删除
日期:2016-12-26 14:50:09 人气:1
//CreateList_L.cpp
//To create a LinkList
#include
#include
#include
# define TRUE 1
# define FALSE 0
# define OK 1
# define ERROR 0
# define INFEASIBLE -1
# define OVERFLOW -2
typedef struct DuLNode
{ int data;
stru