数据结构 04 链表

链表

无序链表: 每个节点的入口都是链头.
有序链表: 每个节点的入口是根据已有节点比较, 存放在大于和小于值的中间.
双向无序链表: 每个节点都有两个引用, 分别声明 左边节点和右边节点(相邻).
双向有序链表: 每个节点都有两个引用, 分别声明 左边节点和右边节点(相邻).

# -.- coding:utf-8 -.-
from __future__ import print_function

CHAIN_TYPE = {
    "UnorderedChain": "无序链表",
    "OrderedChain": "有序链表",
    "BidirectionalUnorderedChain": "双向无序链表",
    "BidirectionalOrderedChain": "双向有序链表"
}


class Node(object):

    def __init__(self, data):
        self.__data = data
        self.__right = None

    @property
    def right(self):
        return self.__right

    @right.setter
    def right(self, item):
        self.__right = item

    @property
    def data(self):
        return self.__data

    @data.setter
    def data(self, item):
        self.__data = item

    def __str__(self):
        return "<Node {}>".format(self.data)


class BidirectionalNode(Node):

    def __init__(self, data):
        super(BidirectionalNode, self).__init__(data)
        self.__left = None

    @property
    def left(self):
        return self.__left

    @left.setter
    def left(self, item):
        self.__left = item


class Chain(object):

    def __init__(self):
        self.chain = None

    def add(self, item):
        raise NotImplementedError()

    def remove(self, item):
        raise NotImplementedError()

    def get_node(self, item):
        node = self.chain
        while node:
            if node.data == item:
                return node
            # 链尾右边是None, 因此不会死循环.
            node = node.right

    def search(self, item):
        if self.get_node(item):
            return True
        return False

    def empty(self):
        return self.chain is None

    def size(self):
        node = self.chain
        count = 0
        while node:
            count += 1
            node = node.right
        return count

    def __str__(self):
        node = self.chain
        s = []
        while node:
            s.append(node.data)
            node = node.right
        return "{}".format(s)

    def __iter__(self):
        return self

    def __next__(self):
        if self.chain is None:
            raise StopIteration
        data = self.chain.data
        self.chain = self.chain.right
        return data

    def next(self):
        self.__next__()


class UnorderedChain(Chain):

    def add(self, item):
        node = Node(item)
        node.right = self.chain
        self.chain = node

    def remove(self, item):
        pass


class OrderedChain(Chain):

    def add(self, item):
        node = Node(item)
        previous = None
        current = self.chain

        while current:
            if current.data > item:
                break
            previous = current
            # 链尾右边是None, 因此不会死循环.
            current = current.right

        if previous is None:
            node.right = self.chain
            self.chain = node
        else:
            previous.right = node
            node.right = current

        return True

    def remove(self, item):
        pass


class BidirectionalUnorderedChain(Chain):

    def add(self, item):
        node = Node(item)
        node.right = self.chain
        if self.chain:
            self.chain.left = node
        self.chain = node

    def remove(self, item):
        pass


class BidirectionalOrderedChain(Chain):
    def add(self, item):
        node = Node(item)
        previous = None
        current = self.chain

        while True:
            if current is None:
                break
            if current.data > item:
                break
            previous = current
            current = current.right

        if previous is None:
            node.right = self.chain
            self.chain = node
            return True

        previous.right = node
        node.left = previous
        if current:
            current.left = node
            node.right = current
        return True

    def remove(self, item):
        pass


def main(cls):
    chain = cls()
    cls_name = chain.__class__.__name__
    print("链表: <{} {}>".format(cls_name, CHAIN_TYPE.get(cls_name)))
    # 增加测试数据
    chain.add(31)
    chain.add(27)
    chain.add(28)
    chain.add(29)
    chain.add(30)
    # 查看链表元素数量
    print("查看链表元素数量: ", chain.size())
    # 查看链表
    print("查看链表: ", chain)

    # 查看Node对象
    if "Bidirectional" in cls_name:
        print("查看Node 29对象 Left:", chain.get_node(29).left)
    print("查看Node 29对象 Current:", chain.get_node(29))
    print("查看Node 29对象 Right:", chain.get_node(29).right)

    # 遍历链表
    for i in chain:
        print("遍历链表: ", i)


if __name__ == '__main__':
    main(UnorderedChain)
    main(OrderedChain)
    main(BidirectionalUnorderedChain)
    main(BidirectionalOrderedChain)

    # 输出结果
    # 链表: <UnorderedChain 无序链表>
    # 查看链表元素数量:  5
    # 查看链表:  [30, 29, 28, 27, 31]
    # 查看Node 29对象 Current: <Node 29>
    # 查看Node 29对象 Right: <Node 28>
    # 遍历链表:  30
    # 遍历链表:  29
    # 遍历链表:  28
    # 遍历链表:  27
    # 遍历链表:  31
    
    
    
    # 链表: <OrderedChain 有序链表>
    # 查看链表元素数量:  5
    # 查看链表:  [27, 28, 29, 30, 31]
    # 查看Node 29对象 Current: <Node 29>
    # 查看Node 29对象 Right: <Node 30>
    # 遍历链表:  27
    # 遍历链表:  28
    # 遍历链表:  29
    # 遍历链表:  30
    # 遍历链表:  31
    
    
    
    # 链表: <BidirectionalUnorderedChain 双向无序链表>
    # 查看链表元素数量:  5
    # 查看链表:  [30, 29, 28, 27, 31]
    # 查看Node 29对象 Left: <Node 30>
    # 查看Node 29对象 Current: <Node 29>
    # 查看Node 29对象 Right: <Node 28>
    # 遍历链表:  30
    # 遍历链表:  29
    # 遍历链表:  28
    # 遍历链表:  27
    # 遍历链表:  31
    
    
    
    # 链表: <BidirectionalOrderedChain 双向有序链表>
    # 查看链表元素数量:  5
    # 查看链表:  [27, 28, 29, 30, 31]
    # 查看Node 29对象 Left: <Node 28>
    # 查看Node 29对象 Current: <Node 29>
    # 查看Node 29对象 Right: <Node 30>
    # 遍历链表:  27
    # 遍历链表:  28
    # 遍历链表:  29
    # 遍历链表:  30
    # 遍历链表:  31

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • 1 序 2016年6月25日夜,帝都,天下着大雨,拖着行李箱和同学在校门口照了最后一张合照,搬离寝室打车去了提前租...
    RichardJieChen阅读 5,096评论 0 12
  • 树的概述 树是一种非常常用的数据结构,树与前面介绍的线性表,栈,队列等线性结构不同,树是一种非线性结构 1.树的定...
    Jack921阅读 4,447评论 1 31
  • 1. 链表 链表是最基本的数据结构,面试官也常常用链表来考察面试者的基本能力,而且链表相关的操作相对而言比较简单,...
    Mr希灵阅读 1,439评论 0 20
  • 应用层: String——字符串 Hash——字典 List——列表 Set——集合 Sorted Set——有序...
    vivi_wong阅读 1,030评论 0 0
  • 写完以后,李察德像个真正的文化人那样,把纸笔收好,从自己的作品里面找了写的比较好的二十份,准备妥当,等李财东来。 ...
    小溪流_3f91阅读 238评论 2 3