摘要:
Python中的数据结构 #巧用Python列表特性实现特定数据结构 #栈实现stack = []stack.push(x)stack.pop()stack[-1] #队列实现from collections import dequequeue = deque()#单向队列queue.append( 阅读全文
摘要:
一些常用的排序 #系统内置排序算法#list.sort()#heapq模块 #python操作列表的方法,它们的时间复杂度 #insert() > O(n) #remove() > O(n) #append() > O(1) #in > 0(n) #计数排序#规定无序列表元素要求有范围#统计个元素出 阅读全文