您好,登錄后才能下訂單哦!
這篇“C++雙向鏈表的增刪查改操作方法源碼分析”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C++雙向鏈表的增刪查改操作方法源碼分析”文章吧。
雙向鏈表也叫雙鏈表,是鏈表的一種,它是單鏈表的升級版,與單鏈表不同的是,它的每個數據結點中都有兩個指針,分別指向直接后繼和直接前驅。而單鏈表只有一個指針,指向后繼。
雙鏈表示意圖
首先創立一個結構體,其中包含一個prev指針,一個val值以及一個next指針。如圖可以看出其中prev指針指向的是上一個結構體,而next指針指向的是下一個結構體。結構體代碼
typedef int LTDataType; typedef struct ListNode { LTDataType _data; struct ListNode* _next; struct ListNode* _prev; }ListNode;
ListNode* ListCreate() { ListNode* guard = (ListNode*)malloc(sizeof(ListNode)); if (guard == NULL) { perror("ListCreate"); exit(-1); } guard->_next = guard; guard->_prev = guard; return guard; }
void ListPrint(ListNode* pHead) { assert(pHead); ListNode* cur = pHead; while (cur->_next != pHead) { cur = cur->_next; printf("%d->", cur->_data); } printf("NULL\n"); return; }
void ListPushBack(ListNode* pHead, LTDataType x) { ListNode* newnode = (ListNode*)malloc(sizeof(ListNode)); if (newnode == NULL) { perror("ListPushBack"); exit(-1); } newnode->_data = x; ListNode* cur = pHead->_prev; newnode->_next = pHead; newnode->_prev = cur; cur->_next = newnode; pHead->_prev = newnode; return; }
void ListPopBack(ListNode* pHead) { assert(pHead); ListNode* pre = pHead->_prev->_prev; free(pHead->_prev); pre->_next = pHead; pHead->_prev = pre; return; }
void ListPushFront(ListNode* pHead, LTDataType x) { assert(pHead); ListNode* newnode = (ListNode*)malloc(sizeof(ListNode)); if (newnode == NULL) { perror("ListPushFront"); exit(-1); } newnode->_data = x; newnode->_next = pHead->_next; newnode->_prev = pHead; pHead->_next = newnode; newnode->_next->_prev = newnode; return; }
void ListPopFront(ListNode* pHead) { assert(pHead); ListNode* cur = pHead->_next->_next; free(pHead->_next); pHead->_next = cur; cur->_prev = pHead; return; }
ListNode* ListFind(ListNode* pHead, LTDataType x) { assert(pHead); ListNode* cur = pHead; while (cur->_next != pHead) { cur = cur->_next; if (cur->_data == x) return cur; } printf("Can't find.\n"); return NULL; }
void ListInsert(ListNode* pos, LTDataType x) { assert(pos); ListNode* newnode = (ListNode*)malloc(sizeof(ListNode)); if (newnode == NULL) { perror("ListPushFront"); exit(-1); } ListNode* cur = pos->_prev; newnode->_next = pos; newnode->_prev = cur; pos->_prev = newnode; cur->_next = newnode; return; }
void ListErase(ListNode* pos) { ListNode* front = pos->_prev; ListNode* behind = pos->_next; free(pos); front->_next = behind; behind->_prev = front; return; }
void ListDestory(ListNode* pHead) { assert(pHead); while (pHead->_next != pHead) { pHead->_next = pHead->_next->_next; free(pHead->_next->_prev); pHead->_next->_prev = pHead; } return; }
以上就是關于“C++雙向鏈表的增刪查改操作方法源碼分析”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。