摘要: 单链表的游标实现(数组) 不使用任何指针类型,利用游标实现单链表的基本操作 #include <iostream> using namespace std; using PtrToNode = int; using List = PtrToNode; using Position = PtrToNo 阅读全文
posted @ 2022-12-23 22:12 hugeYlh 阅读(22) 评论(0) 推荐(0) 编辑