摘要: 队列队列是一种先进先出的数据结构,主要操作包括入队,出队。入队的元素加入到对尾,从队头取出出队的元素。这里用列表简单模拟队列,其实现如下: queue()is_empty()size()enqueue()dequeue()代码如下: class queue(self): #创立容器 def __in 阅读全文
posted @ 2019-04-16 18:48 咣咣敲代码 阅读(3759) 评论(0) 推荐(1) 编辑
摘要: pip install win32api pip install pywin32 都会提示错误,如下: Could not find a version that satisfies the requirement win32api (from versions: ) No matching dis 阅读全文
posted @ 2019-04-16 16:04 咣咣敲代码 阅读(4086) 评论(0) 推荐(0) 编辑