码迷,mamicode.com
首页 > 编程语言 > 详细

(LeetCode)Merge Sorted Array --- 归并数组

时间:2016-08-03 10:40:06      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

Note:
You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2. The number of elements initialized in nums1 and nums2 are m and n respectively.

Subscribe to see which companies asked this question


解题分析:

简单的题目,合并两个list。对此此处的想法就是讲另一个list加到一个list的后面,然后按着大小排序。


# -*- coding:utf-8 -*-
__author__ = 'jiuzhang'
class Solution(object):
    def merge(self, nums1, m, nums2, n):
        nums1[m:m + n] = nums2[:n]
        nums1.sort()



(LeetCode)Merge Sorted Array --- 归并数组

标签:

原文地址:http://blog.csdn.net/u012965373/article/details/52101223

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!