当前位置:   article > 正文

数据结构 — 链表

链表的属性

链表(Linked list)是一种表示元素集合的线性数据结构,其中每个元素指向下一个元素。链表中的第一个元素是 head,最后一个元素是 tail。

JavaScript 链表可视化

链表数据结构的每个元素必须具有以下属性:

  • value:元素的值
  • next:指向链表中下一个元素的指针(如果没有,则为 null)

链表数据结构的主要属性有:

  • size:链表中的元素个数
  • head:链表中的第一个元素
  • tail:链表中的最后一个元素

链表数据结构的主要操作有:

  • insertAt:在特定索引处插入元素
  • removeAt:删除特定索引处的元素
  • getAt:检索特定索引处的元素
  • clear:清空链表
  • reverse:反转链表中元素的顺序

JavsScript 实现

  1. class LinkedList {
  2. constructor() {
  3. this.nodes = []
  4. }
  5. get size() {
  6. return this.nodes.length
  7. }
  8. get head() {
  9. return this.size ? this.nodes[0] : null
  10. }
  11. get tail() {
  12. return this.size ? this.nodes[this.size - 1] : null
  13. }
  14. insertAt(index, value) {
  15. const previousNode = this.nodes[index - 1] || null
  16. const nextNode = this.nodes[index] || null
  17. const node = { value, next: nextNode }
  18. if (previousNode) previousNode.next = node
  19. this.nodes.splice(index, 0, node)
  20. }
  21. insertFirst(value) {
  22. this.insertAt(0, value)
  23. }
  24. insertLast(value) {
  25. this.insertAt(this.size, value)
  26. }
  27. getAt(index) {
  28. return this.nodes[index]
  29. }
  30. removeAt(index) {
  31. const previousNode = this.nodes[index - 1]
  32. const nextNode = this.nodes[index + 1] || null
  33. if (previousNode) previousNode.next = nextNode
  34. return this.nodes.splice(index, 1)
  35. }
  36. clear() {
  37. this.nodes = []
  38. }
  39. reverse() {
  40. this.nodes = this.nodes.reduce(
  41. (acc, { value }) => [{ value, next: acc[0] || null }, ...acc],
  42. []
  43. )
  44. }
  45. *[Symbol.iterator]() {
  46. yield* this.nodes
  47. }
  48. }
  • 创建一个具有 constructor 的类(class),为每个实例初始化一个空数组 nodes
  • 定义一个 size getter,它使用 Array.prototype.length 返回 nodes 数组中元素的数量。
  • 定义一个 head getter,它返回 nodes 数组的第一个元素,如果为空,则返回 null
  • 定义一个 tail getter,它返回 nodes 数组的最后一个元素,如果为空,则返回 null
  • 定义一个 insertAt() 方法,使用 Array.prototype.splice()nodes 数组中添加一个新对象,更新上一个元素的 next 键。
  • 定义两个便捷的方法 insertFirst()insertLast(),它们分别使用 insertAt() 方法在 nodes 数组的开头或结尾插入新元素。
  • 定义一个 getAt() 方法,用于检索给定 index 的元素。
  • 定义一个 removeAt() 方法,使用 Array.prototype.splice() 删除 nodes 数组中的一个对象,更新上一个元素的 next 键。
  • 定义一个 clear() 方法,清空 nodes 数组。
  • 定义一个 reverse() 方法,使用 Array.prototype.reduce() 和扩展运算符(...)来反转 nodes 数组的顺序,适当地更新每个元素的 next 键。
  • Symbol.iterator 定义一个生成器方法,使用 yield* 语法委托给 nodes 数组的迭代器。
  1. const list = new LinkedList()
  2. list.insertFirst(1)
  3. list.insertFirst(2)
  4. list.insertFirst(3)
  5. list.insertLast(4)
  6. list.insertAt(3, 5)
  7. list.size // 5
  8. list.head.value // 3
  9. list.head.next.value // 2
  10. list.tail.value // 4
  11. ;[...list.map((e) => e.value)] // [3, 2, 1, 5, 4]
  12. list.removeAt(1) // 2
  13. list.getAt(1).value // 1
  14. list.head.next.value // 1
  15. ;[...list].map((e) => e.value) // [3, 1, 5, 4]
  16. list.reverse()
  17. ;[...list].map((e) => e.value) // [4, 5, 1, 3]
  18. list.clear()
  19. list.size // 0

以上内容译自 30 seconds of code 的 JavaScript Data Structures - Linked List

Leetcode 相关的链表题目

更多资料

Linked List

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/670403
推荐阅读
相关标签
  

闽ICP备14008679号