当前位置:   article > 正文

【数据结构】队列和栈 Python 实现_python 标准库中的栈和队列操作实现 数据结构

python 标准库中的栈和队列操作实现 数据结构

队列和栈都是一种特殊的线性表,所以也各有顺序表和链表两种表示方法。

  • 队列是先进先出,链表要优于顺序表,毕竟如果是顺序表的话,要不停地修改地址。应用主要包括银行业务模型,生产模型
  • 是后进先出。其表示方法我认为顺序表要优于链表。应用主要有数制转换,括号匹配,行编辑程序,迷宫求解,表达式求值,汉诺塔

队列的Python版本数据结构如下:

# -*- coding=utf-8 -*-


class Node(object):
    def __init__(self, value, next=0):
        self.value = value
        self.next = next  # 指针


class Queue(object):
    # 由于 Python 操作地址困难,所以这里给出了链队列的数据结构
    # 队列中存在两个指针,一个头指针,一个尾指针,但是在这里就省去了,只留了一个尾指针
    def __init__(self):
        self.head = 0

    def init_queue(self, data):
        self.head = Node(data[0])
        p = self.head
        for i in data[1:]:
            p.next = Node(i)
            p = p.next

    def clear_queue(self):
        self.head = 0

    def is_empty(self):
        if self.head == 0:
            return True
        else:
            return False

    def get_length(self):
        p, length = self.head, 0
        while p.next != 0:
            length += 1
            p = p.next
        return length

    def en_queue(self, value):  # 向队列的尾部中添加一个结点
        if self.is_empty():
            self.head = Node(value)
        else:
            p = self.head
            for _ in xrange(self.get_length()):
                p = p.next
            p.next = Node(value)

    def get_head(self):  # 返回队列的队首元素
        if self.is_empty():
            print 'This is an empty queue.'
            return
        else:
            return self.head.value

    def de_queue(self):  # 删除队列首部的元素并返回该值
        if self.is_empty():
            print 'This is an empty queue.'
            return
        else:
            p = self.head
            self.head = p.next
            return p.value

    def show_queue(self):  # 打印队列中的所有元素
        if self.is_empty():
            print 'This is an empty queue.'
        else:
            p, container = self.head, []
            for _ in xrange(self.get_length()):
                container.append(p.value)
                p = p.next
            container.append(p.value)
            print container


q = Queue()
q.init_queue([1, 7, 22, 50, 111, 225])
q.show_queue()
print q.get_head()
q.en_queue(999)
q.de_queue()
print q.get_head()
q.show_queue()
q.de_queue()
q.de_queue()
q.show_queue()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87

栈的Python版本数据结构类如下:

# -*- coding=utf-8 -*-


class Node(object):
    # 栈结点
    def __init__(self, value, next=0):
        self.value = value
        self.next = next  # 指针


class Stack(object):
    # 由于 Python 难以对内存地址进行操作,所以这里给出了链栈的数据结构
    # 由于栈的操作比线性表少很多,所以顺序栈的表示法要比链栈方便快捷
    def __init__(self):
        self.head = 0

    def init_stack(self, data):
        self.head = Node(data[0])
        p = self.head
        for i in data[1:]:
            p.next = Node(i)
            p = p.next

    def clear_stack(self):
        self.head = 0

    def is_empty(self):
        if self.head == 0:
            return True
        else:
            return False

    def get_length(self):
        p, length = self.head, 0
        while p != 0:
            length += 1
            p = p.next
        return length

    def push(self, value):  # 向栈中添加一个结点
        if self.is_empty():
            self.head = Node(value)
        else:
            p = self.head
            for _ in xrange(self.get_length()-1):
                p = p.next
            p.next = Node(value)

    def get_top(self):  # 获得栈顶元素
        if self.is_empty():
            print 'This is an empty stack.'
            return
        else:
            p = self.head
            for _ in xrange(self.get_length()):
                p = p.next
            return p.value

    def pop(self):  # 弹出栈顶元素
        length = self.get_length()
        if self.is_empty():
            print 'This is an empty stack.'
            return
        elif length == 1:
            p = self.head
            self.head = 0
            return p.value
        elif length == 2:
            p = self.head
            value = p.next.value
            self.head.next = 0
            return value
        else:
            p = self.head
            for _ in xrange(1, length-1):
                p = p.next
            pop = p.next
            p.next = 0
            return pop.value

    def show_stack(self):  # 打印栈中的所有元素
        if self.is_empty():
            print 'This is an empty stack.'
        else:
            p, container = self.head, []
            for _ in xrange(self.get_length()-1):
                container.append(p.value)
                p = p.next
            container.append(p.value)
            print container



s = Stack()
s.init_stack([1, 7, 22, 50, 111, 225])
s.show_stack()
print s.get_top()
s.push(999)
print s.pop()
s.show_stack()
s.pop()
s.pop()
s.show_stack()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/1019519
推荐阅读
相关标签
  

闽ICP备14008679号