摘要: 链接地址:https://www.cnblogs.com/piperck/p/6030122.htmldef merge(a, b): c = [] h = j = 0 while j < len(a) and h < len(b): if a[j] < b[h]: c.append(a[j]) j += 1 ... 阅读全文
posted @ 2018-07-19 14:44 筱潇 阅读(129) 评论(0) 推荐(0)