typedef int DLTDataType;
typedef struct DListNode
{
struct DListNode* next;
struct DListNode* prev;
DLTDataType val;
}DLTNode;
//申请新的节点
DLTNode* CreateLTNode(DLTDataType x);
//初始化
DLTNode* DLTInit();
//打印
void DLTPrint(DLTNode* phead);
//头插头删尾插尾删
void DLTPushBack(DLTNode* phead, DLTDataType x);
void DLTPopBack(DLTNode* phead);
void DLTPushFront(DLTNode* phead, DLTDataType x);
void DLTPopFront(DLTNode* phead);
//找x的位置
DLTNode* DLTFind(DLTNode* phead, DLTDataType x);
//在pos前面插入
void DLTInsert(DLTNode* pos, DLTDataType x);
//删除pos位置
void DLTErase(DLTNode* pos);
//销毁链表
void DLTDestroy(DLTNode* phead);
DLTNode* CreateLTNode(DLTDataType x)
{
DLTNode* newnode = (DLTNode*)malloc(sizeof(DLTNode));
if (newnode == NULL)
{
perror("malloc fail");
exit(-1);
}
newnode->val = x;
newnode->prev = NULL;
newnode->next = NULL;
return newnode;
}
DLTNode* DLTInit()
{
DLTNode* phead = CreateLTNode(-1);
phead->next = phead;
phead->prev = phead;
return phead;
}
void DLTPrint(DLTNode* phead)
{
assert(phead);
printf("哨兵卫<=>");
DLTNode* cur = phead->next;
while (cur != phead)
{
printf("%d<=>", cur->val);
cur = cur->next;
}
printf("\n");
}
//第一种尾插方式
//void DLTPushBack(DLTNode* phead, DLTDataType x)
//{
// assert(phead);
// DLTNode* tail = phead->prev;
// DLTNode* newnode = CreateLTNode(x);
//
// tail->next = newnode;
// newnode->prev = tail;
// newnode->next = phead;
// phead->prev = newnode;
//}
//第二种尾插方式
void DLTPushBack(DLTNode* phead, DLTDataType x)
{
assert(phead);
DLTInsert(phead, x);
}
//第一种尾删
//void DLTPopBack(DLTNode* phead)
//{
// assert(phead);
// assert(phead->next != phead);
//
// DLTNode* tail = phead->prev;
// DLTNode* tailPrev = tail->prev;
// free(tail);
// tailPrev->next = phead;
// phead->prev = tailPrev;
//}
//第二种尾删
void DLTPopBack(DLTNode* phead)
{
assert(phead);
assert(phead->next != phead);
DLTErase(phead->prev);
}
//第一种头插方式
//void DLTPushFront(DLTNode* phead, DLTDataType x)
//{
// assert(phead);
// DLTNode* newnode = CreateLTNode(x);
//
// newnode->next = phead->next;
// phead->next->prev = newnode;
// phead->next = newnode;
// newnode->prev = phead;
//}
//第二种头插方式
//void DLTPushFront(DLTNode* phead, DLTDataType x)
//{
// assert(phead);
// DLTNode* newnode = CreateLTNode(x);
// DLTNode* first = phead->next;
//
// phead->next = newnode;
// newnode->prev = phead;
// newnode->next = first;
// first->prev = newnode;
//}
//第三种头插方式
void DLTPushFront(DLTNode* phead, DLTDataType x)
{
assert(phead);
DLTInsert(phead->next, x);
}
第一种头删
//void DLTPopFront(DLTNode* phead)
//{
// assert(phead);
// assert(phead->next != phead);
//
// DLTNode* first = phead->next;
// DLTNode* second = first->next;
// phead->next = second;
// second->prev = phead;
// free(first);
// first = NULL;
//}
//第二种头删
void DLTPopFront(DLTNode* phead)
{
assert(phead);
assert(phead->next != phead);
DLTErase(phead->next);
}
DLTNode* DLTFind(DLTNode* phead, DLTDataType x)
{
assert(phead);
DLTNode* cur = phead->next;
while (cur != phead)
{
if (cur->val == x)
{
return cur;
}
cur = cur->next;
}
return NULL;
}
//在pos前面插入
void DLTInsert(DLTNode* pos, DLTDataType x)
{
assert(pos);
DLTNode* posPrev = pos->prev;
DLTNode* newnode = CreateLTNode(x);
posPrev->next = newnode;
newnode->prev = posPrev;
newnode->next = pos;
pos->prev = newnode;
}
//删除pos位置
void DLTErase(DLTNode* pos)
{
assert(pos);
DLTNode* posNext = pos->next;
DLTNode* posPrev = pos->prev;
posPrev->next = posNext;
posNext->prev = posPrev;
free(pos);
pos = NULL;
}
void DLTDestroy(DLTNode* phead)
{
assert(phead);
DLTNode* cur = phead->next;
while (cur != phead)
{
DLTNode* next = cur->next;
free(cur);
cur = next;
}
free(phead);
}
上方的链表指的是双向链表,顺序表指的是数组顺序表。