摘要: 链表的基本操作 链表的基础操作有查找、删除、添加。 查找 先定义一下链表的数据结构: class DataNode{ int key; int value; DataNode pre; DataNode next; public DataNode(){}; public DataNode (int 阅读全文
posted @ 2022-05-21 21:56 LingCode丶 阅读(315) 评论(0) 推荐(1) 编辑