雙向鏈表的增刪查改

雙向鏈表顧名思義,鏈表的每個節點都有兩個指針,一個指向上一個節點,一個指向下一個節點,經過指針將鏈表的頭和尾連起來造成一個循環結構。node SeqList.hweb #pragma once #include<stdio.h> #include<Windows.h> #include<assert.h> typedef int DataType; typedef struct DListNode
相關文章
相關標籤/搜索