您好,登錄后才能下訂單哦!
項目頭文件:
#ifndef _LIST_H_
#define _LIST_H_
#include <stdio.h>
#include<stdlib.h>
typedef int LTDataType;
typedef struct ListNode {
LTDataType _data;
struct ListNode* _next;
struct ListNode* _prev;
}ListNode;
typedef struct List {
ListNode* _head;
}List;
void ListInit(List* plist);//初始化
void ListDestory(List* plist);//清空鏈表
void ListPushBack(List* plist, LTDataType x);//后插
void ListPopBack(List* plist);//后刪
void ListPushFront(List* plist, LTDataType x);
void ListPopFront(List* plist);
ListNode* ListFind(List* plist, LTDataType x);//查找
void ListMerge(List* pList1, List* pList2);//將有序鏈表有序合并
void ListInsertFront(ListNode* pos, LTDataType x);
void ListInsertAfter(ListNode* pos, LTDataType x);
// ????pos??????????
void ListErase(ListNode* pos);//刪除
void ListRemove(List* plist, LTDataType x);//移除指定
void ListRemoveAll(List* plist, LTDataType x);//移除指定的全部
void ListPrint(List* plist);//打印
#endif /*_LIST_H_*/
具體功能實現:
void ListInit(List* plist)
{
plist->_head = (ListNode*)malloc(sizeof(ListNode));
plist->_head->_next = plist->_head;
plist->_head->_prev = plist->_head;
}
void ListDestory(List* plist)
{
while (plist->_head->_next != plist->_head)
{
ListPopFront(plist);
}
free(plist->_head);
plist->_head = NULL;
}
void ListPushBack(List* plist, LTDataType x)
{
ListInsertFront(plist->_head, x);
}
void ListPopBack(List* plist)
{
ListErase(plist->_head->_prev);
}
void ListPushFront(List* plist, LTDataType x)
{
ListInsertAfter(plist->_head, x);
}
void ListPopFront(List* plist)
{
ListErase(plist->_head->_next);
}
ListNode* ListFind(List* plist, LTDataType x)
{
ListNode* cur;
for (cur = plist->_head->_next; cur != plist->_head; cur = cur->_next)
{
if (cur->_data == x)
{
return cur;
}
}
return NULL;
}
void ListMerge(List* pList1, List* pList2)//將兩個有序鏈表合并為一個新的有序鏈表并返回。新鏈表是通過拼接給定的兩個鏈表的所有節點組成的
{
ListNode* cur1=pList1->_head->_next, *cur2=pList2->_head->_next;
ListNode* tmp1, *tmp2;
while (cur1 != pList1->_head&&cur2 != pList2->_head)
{
if (cur1->_data > cur2->_data)
{
tmp1 = cur1->_prev;
tmp2 = cur2->_next;
tmp1->_next = cur2;
cur2->_next = cur1;
cur1->_prev = cur2;
cur2->_prev = tmp1;
cur2 = tmp2;
}
else
{
cur1 = cur1->_next;
}
}
if (cur1 == pList1->_head)
{
tmp2 = pList2->_head->_prev;
cur2->_prev = cur1->_prev;
cur1->_prev->_next = cur2;
tmp2->_next = cur1;
cur1->_prev = tmp2;
}
free(pList2->_head);
pList2->_head = NULL;
}
void ListInsertFront(ListNode* pos, LTDataType x)
{
ListNode* cur = (ListNode*)malloc(sizeof(ListNode));
cur->_data = x;
cur->_next = pos;
cur->_prev = pos->_prev;
pos->_prev->_next = cur;
pos->_prev = cur;
}
void ListInsertAfter(ListNode* pos, LTDataType x)
{
ListNode* cur = (ListNode*)malloc(sizeof(ListNode));
cur->_data = x;
cur->_prev = pos;
cur->_next = pos->_next;
pos->_next->_prev = cur;
pos->_next = cur;
}
// ????pos??????????
void ListErase(ListNode* pos)
{
pos->_prev->_next = pos->_next;
pos->_next->_prev = pos->_prev;
free(pos);
}
void ListRemove(List* plist, LTDataType x)
{
ListNode * cur = ListFind(plist, x);
if (cur)
{
ListErase(cur);
}
}
void ListRemoveAll(List* plist, LTDataType x)
{
ListNode* cur;
for (cur = plist->_head->_next; cur != plist->_head; cur = cur->_next)
{
if (cur->_data == x)
{
ListErase(cur);
}
}
}
void ListPrint(List* plist)
{
ListNode* cur;
if (plist->_head == NULL)
{
printf("NULL\n");
return;
}
printf("head->");
for (cur = plist->_head->_next; cur != plist->_head; cur = cur->_next)
{
printf("%d-> ",cur->_data);
}
printf("head\n");
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。