數據結構基礎--單鏈表的基本操做(建立,插入,刪除和查找)C++

使用的頭文件:ios #include<iostream> #include<malloc.h> using namespace std; 單鏈表的結構體定義:函數 typedef struct LNode{ int data; LNode* next; }LNode,*Linklist; 插入操做:spa //在單鏈表的第i個位置插入元素e int insertLinklist(Linkl
相關文章
相關標籤/搜索