美文网首页
数组拼接

数组拼接

作者: He_Yu | 来源:发表于2019-08-13 12:53 被阅读0次

可以在此基础上无限次叠加拼接次数。

#include<iostream>

int main( ){
    int n = 9;
    int m = 3;
    int r = 4;
    double array[9] = {3,3,3,3,3,5,6,7,9};
    double a[3] = {3,5,7};
    double b[4] = {0,0,0,1};
    int aa[16] = {0};
    int i, j, k;
    for (i = 0; i < n; i++)
        aa[i] = array[i];
//    std::cout << i << std::endl;
    for (j = 0; j < m; j++,i++)
        aa[i] = a[j];
//    std::cout << i << " " << j << std::endl;
    for (k = 0; k < r; j++,i++,k++ )
        aa[i] = b[k];
//    std::cout << k << std::endl;
    for (i = 0; i<m+n+r; i++)
        std::cout << aa[i] << " ";
//    cv::Mat mean = (cv::Mat_<double>(4, 4) << aa[i]);
//    std::cout << "mean=" << mean << std::endl;
    return 0;
}

另一种方法:

#include<iostream>
#include <stdlib.h>
#include <vector>
using namespace std;
//定义指针函数
int *copy(int array[], int a[], int aa[], int n, int m);
int main(){
    int size = 4;
    int a2[4] = {3,3,3,3};
    int a1[4] = {3,5,7,8};
    int a3[9] = {0};
    int *p;
    p = copy(a1, a2, a3, 4,4);
    cout << p[0] << " " << p[0] << " " << p[1] << " " << p[2] << " " << p[3] <<  " " << p[4] << " " << p[4] << " " << p[6] << " " << p[7] << " " << p[8] << " " << p[9] << " " << p[10] <<endl;

    return 0;

}
int *copy(int array[], int a[], int aa[], int n, int m)
{
    int i, j;
    for (i = 0; i < n; i++)
        aa[i] = array[i];
    for (j = 0; j < m; j++,i++)
        aa[i] = a[j];
    for (i = 0; i<m+n; i++)
        //printf("%d,", aa[i]);

    return aa;
}

相关文章

  • ES6 扩展运算符 常用场景

    一、复制数组 image.png 二、数组拼接 二、多个数组拼接 四、字符串转数组

  • 数组常用方法

    数组查询与拼接 数组拼接 把数组转为字符串 检验数组中是否包含某一项 indexOf/lastIndexOf/in...

  • numpy拼接数组之vstack,hstack

    hstack是水平方向拼接数组vstack是垂直方向拼接数组拼接顺序是参数的输入顺序,如a,b,c三个数组,np....

  • 2.4

    数组API string() 把数组转为字符串 join('') 拼接,把数组中的元素拼接为字符串 concat(...

  • ES6小技巧

    1- 数组去重 数组拼接 assign

  • 数组拼接

    可以在此基础上无限次叠加拼接次数。 另一种方法:

  • js day06

    1.数组API 1)string() 把数组转为字符串 2.join('') 拼接,把数组中的元素拼接为字符...

  • 9月20日

    数组剩下的几个不改变原数组方法 concat数组拼接 join,把数组按字符拼接,传字符串,返回字符串 splic...

  • JS对象数组转换

    对象转数组 数组转对象 字符串拼接函数

  • javascript Array的基本用法

    数组基本用法 concat() 拼接数组,原数组不变 join() 、toString() 数组转字符串 pop(...

网友评论

      本文标题:数组拼接

      本文链接:https://www.haomeiwen.com/subject/xaevjctx.html