zoukankan      html  css  js  c++  java
  • 动态多维数组在 VC 中的应用 2

    怎样给多维数组动态分配内存

    //Allocate:
    int **p = new int* [m];
    for(int i = 0 ; i < m ; i++)
      p[i] = new int[n];

    //Use:
    for(int i = 0 ; i < m; i++)
      for(int j = 0 ; j < n ; j++)
        p[i][j] = i * j;

    //Free:
    for(int i = 0 ; i < m ; i++)
      delete[] p[i];
    delete[] p;


    1. 演示形为int[2][3]的二维动态数组
    ///////////////////////////////////////////////////////////////////
    int n1, n2;
    const int DIM1 = 2;
    const int DIM2 = 3;
    // 构造数组
    int **ppi = new int*[DIM1];
    for(n1 = 0; n1 < DIM1; n1++)
    {
      ppi[n1] = new int[DIM2];
    }
    // 填充数据
    for(n1 = 0; n1 < DIM1; n1++)
    {
      for(n2 = 0; n2 < DIM2; n2++)
      {
        ppi[n1][n2] = n1 * 10 + n2;
      }
    }
    // 输出
    for(n1 = 0; n1 < DIM1; n1++)
    {
      for(n2 = 0; n2 < DIM2; n2++)
      {
        afxDump << "ppi[" << n1 << "][" << n2 << "] = " << ppi[n1][n2] << "\n";
      }
    }
    // 释放数组
    for(n1 = 0; n1 < DIM1; n1++)
    {
      delete [] ppi[n1];
    }
    delete [] ppi;

    2. 三维动态数组(int[2][3][4])
    ///////////////////////////////////////////////////////////////////
    int n1, n2, n3;
    const int DIM1 = 2;
    const int DIM2 = 3;
    const int DIM3 = 4;
    // 构造数组
    int ***ppi = new int**[DIM1];
    for(n1 = 0; n1 < DIM1; n1++)
    {
      ppi[n1] = new int*[DIM2];
      for(n2 = 0; n2 < DIM2; n2++)
      {
        ppi[n1][n2] = new int[DIM3];
      }
    }
    // 填充数据
    for(n1 = 0; n1 < DIM1; n1++)
    {
      for(n2 = 0; n2 < DIM2; n2++)
      {
        for(n3 = 0; n3 < DIM3; n3++)
        {
          ppi[n1][n2][n3] = n1 * 100 + n2 * 10 + n3;
        }
      }
    }
    // 输出
    for(n1 = 0; n1 < DIM1; n1++)
    {
      for(n2 = 0; n2 < DIM2; n2++)
      {
        for(n3 = 0; n3 < DIM3; n3++)
        {
          afxDump << "ppi[" << n1 << "][" << n2 << "][" << n3 << "] = "<< ppi[n1][n2][n3] << "\n";
        }
      }
    }
    // 释放数组
    for(n1 = 0; n1 < DIM1; n1++)
    {
      for(n2 = 0; n2 < DIM2; n2++)
      {
        delete [] ppi[n1][n2];
      }
      delete [] ppi[n1];
    }
    delete [] ppi;
     
    转自:http://blog.gisforum.net/u/28376/archives/2007/316.html
  • 相关阅读:
    LevelDB安装配置
    Enumerable.Intersect方法来生成2个序列的交集
    .Net 分页功能实现
    Canvas统计图表(多边形,蜘蛛网,渐变色)
    存储格式与压缩算法
    Hive数仓构建及数据倾斜
    团队沟通
    git错误:OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
    linux搭建gitlab服务器
    2018牛客网暑期ACM多校训练营第一场
  • 原文地址:https://www.cnblogs.com/sikale/p/1967530.html
Copyright © 2011-2022 走看看