会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Ling的博客
路途遥远
博客园
首页
联系
订阅
管理
2022年5月21日
【算法】链表的基本操作和高频算法题
摘要: 链表的基本操作 链表的基础操作有查找、删除、添加。 查找 先定义一下链表的数据结构: 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)
编辑
公告