标签:有序链表 线性 增删查改 view 学习 创建 pid 经典面试题 ice
线性表1.删除链表中等于给定值 val 的所有节点。
https://leetcode-cn.com/problems/remove-linked-list-elements
2.反转一个单链表。
https://leetcode-cn.com/problems/reverse-linked-list
3.查找链表中倒数第k个结点
https://www.nowcoder.com/practice/529d3ae5a407492994ad2a246518148a?tpId=13&&tqId=11167&rp=2&ru=/activity/oj&qru=/ta/coding-interviews/question-ranking
4.合并两个有序链表
https://leetcode-cn.com/problems/merge-two-sorted-lists
5.删除链表中重复结点
https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii
6.复制复杂链表
https://leetcode-cn.com/problems/copy-list-with-random-pointer
将线性表的一些基本功能(增删查改)写在一个类里。使用时只要创建一个对象,用 对象.方法 调用即可
标签:有序链表 线性 增删查改 view 学习 创建 pid 经典面试题 ice
原文地址:https://blog.51cto.com/14233363/2410218