资讯专栏INFORMATION COLUMN

javascript数据结构与算法(一)单向链表与双向链表

William_Sang / 2247人阅读

摘要:创建双向链表创建节点继承添加前继指针初始化双向链表对链表最后一个元素进行引用插入操作尾插法任意位置添加元素删除操作删除特定位置的元素查询操作查询元素的位置查询尾部元素修改操作清空双向链表双向链表对象转为字符串

线性表 (List):零个或者多个数据元素的有限序列。线性表是一个序列,具有一对一的关系,而不能具备一对多的关系。线性表要求有限性,数据类型也要相同。
本文参考的主要是大话数据结构的原理进行理解,用Javascript实现线性表的相关操作。

创建单向链表:

</>复制代码

  1. //创建节点
  2. class Node{
  3. constructor(element){
  4. this.element = element;//数据域
  5. this.next = undefined;//指针域
  6. }
  7. };
  8. //判断传入的对象与链表的元素是否相等,待会实现indexOf()要用到,在这里先写上
  9. function(a,b){
  10. return a == b;
  11. };
  12. //创建链表
  13. class LinkedList {
  14. constructor(equalsFn = defaultEquals) {
  15. this.equalsFn = equalsFn;
  16. this.count = 0;
  17. this.head = undefined;
  18. }
  19. };
查询操作 判断单向表是否为空

</>复制代码

  1. isEmpty() {
  2. return this.size() === 0;
  3. }
计算单向链表的长度

</>复制代码

  1. size() {
  2. return this.count;
  3. }
查询链表的某个元素的位置

</>复制代码

  1. indexOf(element) {
  2. let current = this.head;
  3. for (let i = 0; i < this.size() && current != null; i++) {
  4. if (this.equalsFn(element, current.element)) {
  5. return i;
  6. }
  7. current = current.next;
  8. }
  9. return -1;
  10. }
获取第一个元素

</>复制代码

  1. getHead() {
  2. return this.head;
  3. }
获得元素操作

</>复制代码

  1. getElementAt(index) {
  2. if (index >= 0 && index <= this.count) {
  3. let node = this.head;
  4. for (let i = 0; i < index && node != null; i++) {
  5. node = node.next;
  6. }
  7. return node;
  8. }
  9. return undefined;
  10. }
插入操作 尾插法

</>复制代码

  1. push(element) {
  2. const node = new Node(element);
  3. let current;
  4. if (this.head == null) {
  5. // catches null && undefined
  6. this.head = node;
  7. } else {
  8. current = this.head;
  9. while (current.next != null) {
  10. current = current.next;
  11. }
  12. current.next = node;
  13. }
  14. this.count++;
  15. }
任意位置插入元素

</>复制代码

  1. insert(element, index) {
  2. if (index >= 0 && index <= this.count) {
  3. const node = new Node(element);
  4. if (index === 0) {
  5. const current = this.head;
  6. node.next = current;
  7. this.head = node;
  8. } else {
  9. const previous = this.getElementAt(index - 1);
  10. node.next = previous.next;
  11. previous.next = node;
  12. }
  13. this.count++;
  14. return true;
  15. }
  16. return false;
  17. }
删除操作 删除特定位置的元素

</>复制代码

  1. removeAt(index) {
  2. if (index >= 0 && index < this.count) {
  3. let current = this.head;
  4. if (index === 0) {
  5. this.head = current.next;
  6. } else {
  7. const previous = this.getElementAt(index - 1);
  8. current = previous.next;
  9. previous.next = current.next;
  10. }
  11. this.count--;
  12. return current.element;
  13. }
  14. return undefined;
  15. }
直接删除链表的某个元素

</>复制代码

  1. remove(element) {
  2. const index = this.indexOf(element);
  3. return this.removeAt(index);
  4. }
修改操作 单向链表转为字符串

</>复制代码

  1. toString() {
  2. if (this.head == null) {
  3. return "";
  4. }
  5. let objString = `${this.head.element}`;
  6. let current = this.head.next;
  7. for (let i = 1; i < this.size() && current != null; i++) {
  8. objString = `${objString},${current.element}`;
  9. current = current.next;
  10. }
  11. return objString;
  12. }
  13. }
清空单向链表

</>复制代码

  1. clear() {
  2. this.head = undefined;
  3. this.count = 0;
  4. }

以上就是单向链表的常见操作。

由于单向链表只能从头到尾的遍历,如果查询得是下一节点,单向表时间复杂度为O(1),但是要查询的是上一节点的话,那么时间复杂度就是O(n)。如果链表也可以正反遍历的话,那么查询操作的时间复杂度就都是O(1)啦,这时我们的前辈就提出了双向链表这一神奇的链表。由于双向链表是单向链表的拓展,只是多了一个指针,对于查询操作并没有帮助,所以实现方法还是跟单向链表一样,这里就不多加阐述。

创建双向链表

</>复制代码

  1. //创建节点
  2. class DoublyNode extends Node {
  3. constructor(element, next, prev) {
  4. super(element, next);//继承
  5. this.prev = prev;//添加前继指针
  6. }
  7. };
  8. //初始化双向链表
  9. class DoublyLinkedList extends LinkedList {
  10. constructor(equalsFn = defaultEquals) {
  11. super(equalsFn);
  12. this.tail = undefined;//对链表最后一个元素进行引用
  13. }
插入操作 尾插法

</>复制代码

  1. push(element) {
  2. const node = new DoublyNode(element);
  3. if (this.head == null) {
  4. this.head = node;
  5. this.tail = node; // NEW
  6. } else {
  7. // attach to the tail node // NEW
  8. this.tail.next = node;
  9. node.prev = this.tail;
  10. this.tail = node;
  11. }
  12. this.count++;
  13. }
任意位置添加元素

</>复制代码

  1. insert(element, index) {
  2. if (index >= 0 && index <= this.count) {
  3. const node = new DoublyNode(element);
  4. let current = this.head;
  5. if (index === 0) {
  6. if (this.head == null) { // NEW
  7. this.head = node;
  8. this.tail = node; // NEW
  9. } else {
  10. node.next = this.head;
  11. this.head.prev = node; // NEW
  12. this.head = node;
  13. }
  14. } else if (index === this.count) { // last item NEW
  15. current = this.tail;
  16. current.next = node;
  17. node.prev = current;
  18. this.tail = node;
  19. } else {
  20. const previous = this.getElementAt(index - 1);
  21. current = previous.next;
  22. node.next = current;
  23. previous.next = node;
  24. current.prev = node; // NEW
  25. node.prev = previous; // NEW
  26. }
  27. this.count++;
  28. return true;
  29. }
  30. return false;
  31. }
删除操作 删除特定位置的元素

</>复制代码

  1. removeAt(index) {
  2. if (index >= 0 && index < this.count) {
  3. let current = this.head;
  4. if (index === 0) {
  5. this.head = this.head.next;
  6. // if there is only one item, then we update tail as well //NEW
  7. if (this.count === 1) {
  8. // {2}
  9. this.tail = undefined;
  10. } else {
  11. this.head.prev = undefined;
  12. }
  13. } else if (index === this.count - 1) {
  14. // last item //NEW
  15. current = this.tail;
  16. this.tail = current.prev;
  17. this.tail.next = undefined;
  18. } else {
  19. current = this.getElementAt(index);
  20. const previous = current.prev;
  21. // link previous with current"s next - skip it to remove
  22. previous.next = current.next;
  23. current.next.prev = previous; // NEW
  24. }
  25. this.count--;
  26. return current.element;
  27. }
  28. return undefined;
  29. }
查询操作 查询元素的位置

</>复制代码

  1. indexOf(element) {
  2. let current = this.head;
  3. let index = 0;
  4. while (current != null) {
  5. if (this.equalsFn(element, current.element)) {
  6. return index;
  7. }
  8. index++;
  9. current = current.next;
  10. }
  11. return -1;
  12. }
查询尾部元素

</>复制代码

  1. getTail() {
  2. return this.tail;
  3. }
修改操作 清空双向链表

</>复制代码

  1. clear() {
  2. super.clear();
  3. this.tail = undefined;
  4. }
双向链表对象转为字符串

</>复制代码

  1. inverseToString() {
  2. if (this.tail == null) {
  3. return "";
  4. }
  5. let objString = `${this.tail.element}`;
  6. let previous = this.tail.prev;
  7. while (previous != null) {
  8. objString = `${objString},${previous.element}`;
  9. previous = previous.prev;
  10. }
  11. return objString;
  12. }
  13. }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/106800.html

相关文章

  • 学习JavaScript数据结构算法(二):链表

    摘要:实现移除给定的元素要移除的元素返回值表示移除成功方法说明移除单向链表中某个位置的元素。的前端乐园原文链接寒假前端学习学习数据结构与算法二链表 本系列的第一篇文章: 学习JavaScript数据结构与算法(一),栈与队列第二篇文章:学习JavaScript数据结构与算法(二):链表第三篇文章:学习JavaScript数据结构与算法(三):集合第四篇文章:学习JavaScript数据结构与...

    lolomaco 评论0 收藏0
  • Javascript数据结构算法(二)循环链表有序链表

    摘要:循环链表可以像单向链表引用,也可以像双向链表有双向引用。以下就以如何创建栈数据结构为例。 循环链表可以像单向链表引用,也可以像双向链表有双向引用。性能上也跟双向链表差不多,如果position大于length/2,那就可以从尾部开始迭代,可以减少迭代的元素。唯一的区别在于最后一个元素指向下一个元素的指针(tail.next)不是undefine,而是第一个元素(head)。接下来来看一...

    YacaToy 评论0 收藏0
  • JavaScript数据结构算法(四) —— 双向链表

    摘要:链表链表存储有序的元素集合,但不同于数组,链表中的元素在内存中并不是连续放置的。链表又包括单向链表和双向链表双向链表双向链表与单向链表很是相像。但在双向链表中,还有指向上一个节点的链接,是双向的。 链表 链表存储有序的元素集合,但不同于数组,链表中的元素在内存中并不是连续放置的。每个元素由一个存储元素本事的节点和一个指向下一个元素的引用组成。相对于传统的数组,链表的一个好处在于,添加或...

    Youngdze 评论0 收藏0
  • 【译】JavaScript数据结构(3):单向链表双向链表

    摘要:计算机科学中最常见的两种数据结构是单链表和双链表。双向链表双向链表具有单链表的所有功能,并将其扩展为在链表中可以进行双向遍历。双向链表的操作我们的链表将包括两个构造函数和。与单链表不同,双向链表包含对链表开头和结尾节点的引用。 翻译:疯狂的技术宅英文:https://code.tutsplus.com/art...说明:本文翻译自系列文章《Data Structures With Ja...

    Chiclaim 评论0 收藏0
  • JavaScript 数据结构算法之美 - 线性表(数组、栈、队列、链表

    摘要:每个线性表上的数据最多只有前和后两个方向。数组链表队列栈等就是线性表结构。非线性表数据之间并不是简单的前后关系。不包含任何元素的栈称为空栈。移除栈顶的元素,同时返回被移除的元素。 showImg(https://segmentfault.com/img/bVbuvnj?w=900&h=250); 前言 基础知识就像是一座大楼的地基,它决定了我们的技术高度。 我们应该多掌握一些可移值的...

    kaka 评论0 收藏0

发表评论

0条评论

William_Sang

|高级讲师

TA的文章

阅读更多
最新活动
阅读需要支付1元查看
<