c++ 单链表的基本操作(增删改查,前插,后插法,逆置等等)
摘要:
#include <iostream>using namespace std; typedef int ElemType; // 单链表的存储结构typedef struct LNode{ ElemType data; struct LNode* next;} LNode, * LinkList; 阅读全文
posted @ 2023-02-06 17:15 浪訫 阅读(48) 评论(0) 推荐(0) 编辑