C 언어 데이터 구조의 양 방향 링크 와 기본 기능 실현
#ifndef _LIST_H_
#define _LIST_H_
#include
#include
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
");
return;
}
printf("head->");
for (cur = plist->_head->_next; cur != plist->_head; cur = cur->_next)
{
printf("%d-> ",cur->_data);
}
printf("head
");
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.