摘要: 287. Find the Duplicate Number Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least on 阅读全文
posted @ 2018-11-10 20:04 热之雪 阅读(222) 评论(0) 推荐(0)
摘要: 一、进程: Python的os模块封装了常见的系统调用,其中就包括fork。而fork是linux常用的产生子进程的方法,简言之是一个调用,两个返回。 在python中,以下的两个模块用于进程的使用。详细就不展开。 multiprocessing:跨平台版本的多进程模块。 Pool:进程池 Queu 阅读全文
posted @ 2018-11-10 12:55 热之雪 阅读(446) 评论(0) 推荐(0)