1. 首页
  2. 数据库
  3. 其它
  4. 归并排序 Python and C++

归并排序 Python and C++

上传者: 2020-12-23 02:59:06上传 PDF文件 18.99KB 热度 15次
#!/usr/bin/env python # -*- coding: utf-8 -*- import random #归并排序 mergeSort # merge : 合并两个有序数组 def merge(left, right): result = [] while left and right: if left[0] <= right[0]: result.append(left.pop(0)) else: result.append(right.pop(0)) while l
用户评论