0
点赞
收藏
分享

微信扫一扫

数据结构与算法(三)-链表(LinkedList)

Hyggelook 2022-01-06 阅读 226

链表结构

一、介绍

链表和数组一样,可以用于存储一系列的元素,但是链表和数组的实现机制完全不同。链表又可以分作单向链表双向链表

链表的每个元素由一个存储元素本身的节点和一个指向下一个元素的引用(有的语言称为指针或连接)组成。类似于火车头,一节车厢载着乘客(数据),通过节点连接另一节车厢。如下图所示

  • 链表的火车结构

image-20200227110656733

  • 链表的数据结构

链表的数据结构

​ head 属性指向链表的第一个节点。

​ 链表中的最后一个节点指向 null

​ 当链表中一个节点也没有的时候,head 直接指向 null

  • 给火车加上数据结构后

image-20200227110626750

数组的优缺点

  • 优点:
    • 一般存储多个元素时,数组(或列表)可能是最常用的数据结构
  • 缺点:
    • 数组的创建需要申请一段连续的内存空间(一整块内存),并且大小是固定的,当前数组不能满足容量需求时,需要扩容。 (一般情况下是申请一个更大的数组,比如 2 倍,然后将原数组中的元素复制过去)
    • 在数组开头或中间位置插入数据的成本很高,需要进行大量元素的位移

链表的优缺点

  • 优点:
    • 链表中的元素在内存中不必是连续的空间,可以充分利用计算机的内存,实现灵活的内存动态管理
    • 链表不必在创建时就确定大小,并且大小可以无限地延伸下去。
    • 链表在插入和删除数据时,时间复杂度可以达到O(1),相对数组效率高很多。
  • 缺点:
    • 链表访问任何一个位置的元素时,都需要从头开始访问(无法跳过第一个元素访问任何一个元素)
    • 无法通过下标值直接访问元素,需要从头开始一个个访问,直到找到对应的元素
    • 虽然可以轻松地到达下一个节点,但是回到前一个节点是很难的
    • 总的来说就是链表查找效率低

二、链表的实现

链表中的常见操作

  • append(element) 向链表尾部添加一个新的项。
  • insert(position, element) 向链表的特定位置插入一个新的项。
  • get(position) 获取对应位置的元素。
  • indexOf(element) 返回元素在链表中的索引。如果链表中没有该元素就返回-1。
  • update(position, element) 修改某个位置的元素。
  • removeAt(position) 从链表的特定位置移除一项。
  • remove(element) 从链表中移除一项。
  • isEmpty() 如果链表中不包含任何元素,返回 trun,如果链表长度大于 0 则返回 false。
  • size() 返回链表包含的元素个数,与数组的 length 属性类似。
  • toString() 由于链表项使用了 Node 类,就需要重写继承自 JavaScript 对象默认的 toString 方法,让其只输出元素的值。

1.逐步封装单向链表

1.1 先创建单向链表类LinkedList,并添加基本属性,再实现单向链表的常用方法:

function LinkedList() {
  function Node(data) {
    this.data = data;
    this.next = null;
  }

  this.head = null;
  this.length = 0;
}

1.2 实现 append() 方法

// 1.向链表尾部追加数据
LinkedList.prototype.append = function (data) {
  var newNode = new Node(data);
  // 若链表为空
  if (this.length === 0) {
    // 将head指向第一个节点
    this.head = newNode;
  } else {
    var current = this.head;
    // 当current.next为null 的时候会退出循环
    while (current.next) {
      // 指针后移
      current = current.next;
    }
    // 当指到最后一个node时,给next append newNode
    current.next = newNode;
  }
  // 注意:append后长度要+1
  this.length += 1;
};
append过程详解
  1. 首先让 currentNode 指向第一个节点。

    image-20200227145315369

  2. 通过 while 循环使 currentNode 指向最后一个节点,最后通过 currentNode.next = newNode,让最后一个节点指向新节点 newNode

image-20200227145453380

1.3 实现 toString() 方法

// 2.方便测试,先完成toString方法
LinkedList.prototype.toString = function () {
  var current = this.head;
  var resultString = "";
  while (current) {
    resultString += current.data + " ";
    current = current.next;
  }
  return resultString;
};
测试代码
var linked = new LinkedList();
linked.append("10");
linked.append("20");
linked.append("30");
console.log(linked.toString()); // 10 20 30

1.4 实现insert()方法

// 3.插入
LinkedList.prototype.insert = function (position, data) {
  // 1.对position进行边界情况判断
  if (position < 0 || position > this.length) return false;

  var newNode = new Node(data);
  // 2.当在第一个位置插入的时候
  if (position === 0) {
    // 将要新节点的next与原链表相连
    newNode.next = this.head;
    // 改变head的指向到新的节点,有点移花接木的意思了哈~
    this.head = newNode;
  } else {
    // 3.这里要找到合适的插入位置
    var index = 0;
    var current = this.head;
    var previous = null;

    // 3.1 遍历的找到要插入的节点位置
    while (index++ < position) {
      previous = current; // 保存前一个节点
      current = current.next; // 保持当前节点
    }

    // 3.2 同样是移花接木
    newNode.next = current;
    previous.next = newNode;
  }

  this.length += 1;
  return true;
};
测试代码
linked.insert(0, "00");
linked.insert(2, "22");
linked.insert(5, "55");
console.log(linked.toString()); // 00 10 22 20 30 55

1.5 实现get()方法

// 4.获取对应位置的数据
LinkedList.prototype.get = function (position) {
  if (position < 0 || position >= this.length) return false;
  var current = this.head;
  var index = 0;
  while (index++ < position) {
    current = current.next;
  }
  return current.data;
};
测试代码
console.log(linked.get(0)); // 00
console.log(linked.get(2)); // 22
console.log(linked.get(5)); // 55

1.6 实现indexOf()方法

// 5.返回数据当前位置,若找不到传入数据的位置,返回-1
LinkedList.prototype.indexOf = function (data) {
  var current = this.head;
  var index = 0;
  while (current) {
    if (current.data === data) return index;
    current = current.next;
    index += 1;
  }
  return -1;
};
测试代码
console.log(linked.indexOf("00")); // 0
console.log(linked.indexOf("22")); // 2
console.log(linked.indexOf("123123")); // -1

1.7 实现update()方法

// 6.更新对应位置对数据
LinkedList.prototype.update = function (position, newData) {
  if (position < 0 || position >= this.length) return false;
  var current = this.head;
  var index = 0;
  while (index++ < position) {
    current = current.next;
  }
  current.data = newData;
  return true;
};
测试代码
linked.update(0, "000");
console.log(linked.get(0)); // 000

1.8 实现removeAt()方法

// 7.根据位置删除数据
LinkedList.prototype.removeAt = function (position) {
  if (position < 0 || position >= this.length) return null;
  var current = this.head;

  if (position === 0) {
    this.head = this.head.next;
  } else {
    var previous = null;
    var index = 0;
    while (index++ < position) {
      previous = current;
      current = current.next;
    }
    // 将前一个节点的next执行下一个节点
    previous.next = current.next;
  }
  this.length -= 1;
  return current.data; // 返回删除的数据
};
测试代码
console.log(linked.removeAt(0)); // 000
console.log(linked.removeAt(4)); // 55
console.log(linked.toString()); // 10 22 20 30

1.9 实现remove()方法

// 8.删除数据
LinkedList.prototype.remove = function (data) {
  var position = this.indexOf(data);
  return this.removeAt(position);
};
测试代码
console.log(linked.remove("10")); // 10
console.log(linked.toString()); // 22 20 30

2.封装完的单向链表

function LinkedList() {
  function Node(data) {
    this.data = data;
    this.next = null;
  }

  this.head = null;
  this.length = 0;

  // 1.向链表尾部追加数据
  LinkedList.prototype.append = function (data) {
    var newNode = new Node(data);
    // 若链表为空
    if (this.length === 0) {
      // 将head指向第一个节点
      this.head = newNode;
    } else {
      var current = this.head;
      // 当current.next为null 的时候会退出循环
      while (current.next) {
        // 指针后移
        current = current.next;
      }
      // 当指到最后一个node时,给next append newNode
      current.next = newNode;
    }
    // 注意:append后长度要+1
    this.length += 1;
  };

  // 3.插入
  LinkedList.prototype.insert = function (position, data) {
    // 1.对position进行边界情况判断
    if (position < 0 || position > this.length) return false;

    var newNode = new Node(data);
    // 2.当在第一个位置插入的时候
    if (position === 0) {
      // 将要新节点的next与原链表相连
      newNode.next = this.head;
      // 改变head的指向到新的节点,有点移花接木的意思了哈~
      this.head = newNode;
    } else {
      // 3.这里要找到合适的插入位置
      var index = 0;
      var current = this.head;
      var previous = null;

      // 3.1 遍历的找到要插入的节点位置
      while (index++ < position) {
        previous = current; // 保存前一个节点
        current = current.next; // 保持当前节点
      }

      // 3.2 同样是移花接木
      newNode.next = current;
      previous.next = newNode;
    }

    this.length += 1;
    return true;
  };

  // 4.获取对应位置的数据
  LinkedList.prototype.get = function (position) {
    if (position < 0 || position >= this.length) return false;
    var current = this.head;
    var index = 0;
    while (index++ < position) {
      current = current.next;
    }
    return current.data;
  };

  // 5.返回数据当前位置
  LinkedList.prototype.indexOf = function (data) {
    var current = this.head;
    var index = 0;
    while (current) {
      if (current.data === data) return index;
      current = current.next;
      index += 1;
    }
    return -1;
  };

  // 6.更新对应位置对数据
  LinkedList.prototype.update = function (position, newData) {
    if (position < 0 || position >= this.length) return false;
    var current = this.head;
    var index = 0;
    while (index++ < position) {
      current = current.next;
    }
    current.data = newData;
    return true;
  };

  // 7.根据位置删除数据
  LinkedList.prototype.removeAt = function (position) {
    if (position < 0 || position >= this.length) return null;
    var current = this.head;

    if (position === 0) {
      this.head = this.head.next;
    } else {
      var previous = null;
      var index = 0;
      while (index++ < position) {
        previous = current;
        current = current.next;
      }
      // 将前一个节点的next执行下一个节点
      previous.next = current.next;
    }
    this.length -= 1;
    return current.data; // 返回删除的数据
  };

  // 8.删除数据
  LinkedList.prototype.remove = function (data) {
    var position = this.indexOf(data);
    return this.removeAt(position);
  };

  LinkedList.prototype.isEmpty = function () {
    return this.length === 0;
  };

  LinkedList.prototype.size = function () {
    return this.length;
  };

  // 2.方便测试,先完成toString方法
  LinkedList.prototype.toString = function () {
    var current = this.head;
    var resultString = "";
    while (current) {
      resultString += current.data + " ";
      current = current.next;
    }
    return resultString;
  };
}

// 测试代码
var linked = new LinkedList();
linked.append("10");
linked.append("20");
linked.append("30");
console.log(linked.toString()); // 10 20 30

linked.insert(0, "00");
linked.insert(2, "22");
linked.insert(5, "55");
console.log(linked.toString()); // 00 10 22 20 30 55
console.log(linked.get(0)); // 00
console.log(linked.get(2)); // 22
console.log(linked.get(5)); // 55

console.log(linked.indexOf("00")); // 0
console.log(linked.indexOf("22")); // 2
console.log(linked.indexOf("123123")); // -1

linked.update(0, "000");
console.log(linked.get(0)); // 000

console.log(linked.removeAt(0)); // 000
console.log(linked.removeAt(4)); // 55
console.log(linked.toString()); // 10 22 20 30

console.log(linked.remove("10")); // 10
console.log(linked.toString()); // 22 20 30

双向链表在下一篇文章中实现

举报

相关推荐

0 条评论