链表

作者: Bel李玉 | 来源:发表于2019-11-25 23:47 被阅读0次

节点

链表是由一串节点组成的,节点有两个职责

    1. value值
    1. 持有指向下一个node的引用,如果该引用为nil,则该node是链表的结尾。
1574614470521.jpg
public class Node<Value> {
  public var value: Value
  public var next: Node?
  
  public init(value: Value, next: Node? = nil) {
    self.value = value
    self.next = next
  }
}

extension Node: CustomStringConvertible {

  public var description: String {
    guard let next = next else {
      return "\(value)"
    }
    return "\(value) -> " + String(describing: next) + " "
  }
}

接下来我们创建创建3个node,并连接它们

   func testNode(){
        let node1 = Node(value: 1)
        let node2 = Node(value: 2)
        let node3 = Node(value: 3)
        
        node1.next = node2
        node2.next = node3
        
        print(node1)
    }

输出如下
1 -> 2 -> 3

链表

public struct LinkedList<Value> {

  public var head: Node<Value>?
  public var tail: Node<Value>?
  
  public init() {}

  public var isEmpty: Bool {
    return head == nil
  }
}

extension LinkedList: CustomStringConvertible {

  public var description: String {
    guard let head = head else {
      return "Empty list"
    }
    return String(describing: head)
  }
}
链表都有一个head和tail,分别代表着链表的第一个元素和最后一个元素 1574615495292.jpg

push

在链表的头部插入一个节点(head-first insertion)

public mutating func push(_ value: Value) {
  head = Node(value: value, next: head)
  if tail == nil {
    tail = head
  }
}

接下来我们使用push添加节点

 func testLinkPush() {
        var list = LinkedList<Int>()
        list.push(3)
        list.push(2)
        list.push(1)
        print(list)
 }

输出如下
1 -> 2 -> 3

append

在链表的尾部添加节点

public mutating func append(_ value: Value) {

  guard !isEmpty else {
    // 如果为空链表
    push(value)
    return
  }
  
  //链表当前的尾部的next指向新节点
  tail!.next = Node(value: value)
  
  // 设置链表的新的尾部
  tail = tail!.next
}

使用append方法添加新节点

func testLinkAppend() {
        var list = LinkedList<Int>()
        list.append(1)
        list.append(2)
        list.append(3)
        print(list)
}

输出如下
1 -> 2 -> 3

insert(after:)

在链表中插入新节点需要两步:
1. 在链表中找到该node
2. 插入新的node
根据给的index通过遍历链表元素得到该位置的node值

   public func node(at index: Int) -> Node<Value>? {
        var currentNode = head
        var currentIndex = 0 // 索引
        
        while  currentIndex < index && currentNode != nil  {
            currentNode = currentNode?.next // 查找下一个
            currentIndex += 1
        }
        return currentNode
    }

在给定node后面插入新的节点

    @discardableResult // 忽略函数返回值
    public mutating func insert(_ value: Value, after node: Node<Value>) -> Node<Value> {
        // 如果node为函数的尾部,直接在尾部添加元素
        guard tail !== node else {
            append(value)
            return tail!
        }
        
        let insertNode = Node(value: value)
        insertNode.next = node.next
        node.next = insertNode
//        node.next = Node(value:  value, next: node.next)
        return node.next!
    }

性能分析

push append insert(after:) node(at:)
Behaviour insert at head insert at tail insert after a node return a node at given index
Time complexity O(1) O(1) O(1) O(i),where I is the given index

从链表中移除值

  • 1.pop: 从列表的头部移除元素
  • 2.removeLast: 从链表的的最后面移除元素
  • 3.remove(at:): 从列表中移除任意值

pop operations

    @discardableResult
    public mutating func pop() -> Value?{
        // 延迟执行
        defer {
            head = head?.next
            if isEmpty {
                tail = nil
            }
        }
        return head?.value
    }

removeLast operations

移除最后一个元素:通过while循环找到倒数第二个元素,将该元素的next置为nil,并设置为链表的tail

    @discardableResult
    public mutating func removeLast() -> Value?{
        guard let head = head else {
            //空链表
            return nil
        }
        
        guard head.next != nil else {
            // 只有一个元素
            return pop()
        }
        
        var preNode = head
        var currentNode = head
        // 找到倒数第二个元素
        while let next = currentNode.next {
            preNode = currentNode
            currentNode = next
        }
        // 将next置空,设置为tail
        preNode.next = nil
        tail = preNode
        return currentNode.value
    }

remove(after:)

删除链表中的某一元素


1574696403011.jpg
@discardableResult
public mutating func remove(after node: Node<Value>) -> Value? {  
     defer {
          if node.next === tail {
              tail = node
          }
            node.next = node.next?.next
     }
        return node.next?.value
 }

相关文章

  • 链表基础

    链表基础 链表长度 链表为空 链表结构 链表增加

  • 双向链表&双向循环链表

    链表分为:单链表、单向循环链表、双向链表、双向循环链表本节主要说明:双向链表、双向循环链表 定义结点 一、双向链表...

  • 算法与数据结构:链表

    链表 链表还分为单向链表和双向链表, 但是这篇文章只说单向链表 , 下次再讲双向链表 . 链表和数组的区别 ? 链...

  • 链表

    链表 单链表反转链表中环的检测两个有序链表合并删除链表倒数第n个节点求链表的元素总个数 一.单向链表 链表共有特征...

  • 五、双向链表

    双向链表 此前介绍的链表,也叫做单向链表使用双向链表可以提升链表的综合性能 修改之前的单链表的源码: 双向链表 –...

  • 链表

    内容 链表数据结构 向链表添加元素 从链表移除元素 使用 LinkedList 表 双向链表 循环链表 链表数据结...

  • 数据与算法结构

    线性表 顺序表 链表(物理上离散,逻辑上连续) 链表的类别 单链表 循环链表 双链表 链表的操作 顺序表与链表的比...

  • 数据结构——链表

    本文所讲的链表是单链表,链表采用无头链表 科普下:一般链表可以分为有头节点的链表与无头节点的链表 有头节点的链表:...

  • 链表

    文章结构 链表的定义 链表的插入和删除操作 链表的特性 常见的链表结构 自定义链表 链表的经典操作 使用链表实现L...

  • Algorithm小白入门 -- 单链表

    单链表递归反转链表k个一组反转链表回文链表 1. 递归反转链表 单链表节点的结构如下: 1.1 递归反转整个单链表...

网友评论

      本文标题:链表

      本文链接:https://www.haomeiwen.com/subject/pjarwctx.html