博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode 088] Merge Sorted Array
阅读量:5101 次
发布时间:2019-06-13

本文共 536 字,大约阅读时间需要 1 分钟。

  • 由于是按大小顺序把nums2中的数字添加到nums1中,所以
    • 当nums2中的数字全部添加到nums1中后,添加便完成

Implementation

public class Solution {    public void merge(int[] nums1, int m, int[] nums2, int n) {        int index = m + n - 1;        int index1 = m - 1;        int index2 = n - 1;        while (index1 >= 0 && index2 >= 0) {            nums1[index--] = (nums1[index1] < nums2[index2]? nums2[index2--]: nums1[index1--]);        }        while (index2 >= 0) {            nums1[index--] = nums2[index2--];        }    }}

转载于:https://www.cnblogs.com/Victor-Han/p/5193015.html

你可能感兴趣的文章
JavaScript Array对象
查看>>
CocoaPods升级安装三方库报错
查看>>
idea server
查看>>
Linux系统日志及screen工具
查看>>
2014-12-02-2107-Java-UML
查看>>
20130909
查看>>
SQL语言:DQL,DML,DDL,DCL
查看>>
PB与各种数据库连接
查看>>
1003 阶乘后面0的数量
查看>>
HashMap,LinkedHashMap和Hashtable类的深入剖析与理解
查看>>
智能家居中的物联网网关的可信计算平台模块(TPM)设计
查看>>
CUDA Fortran for Scientists and Engineers第二版翻译
查看>>
[转]多列索引
查看>>
mbstring未安装
查看>>
os模块
查看>>
C# 客服端上传文件与服务器器端接收 (简单代码)
查看>>
nginx搭建高性能流媒体技术
查看>>
Code a simple telnet client using sockets in python
查看>>
java 生成jar包并保留注释
查看>>
文件下载的几种方法
查看>>