• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

C语言多维动态数组

OC/C/C++ 水墨上仙 1218次浏览

《C++ Primer》中说:在C++中没有多维数组,只有元素师数组的数组。
如:要想创建一个二维整数数组,首先要创建一个一维动态数组,它由int *类型的指针构成。int*就是这个一维int指针数组的类型。

// String.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
typedef int* IntArrayPtr;  ///(1)
void fill_array(int a[] , int size);
void sort(int a[] , int size);
int main(int argc, char* argv[])
{
	using namespace std;
	int row , col ;
	cout<<"Enter the row and column dimensions of the array:\n";
	cin>>row>>col;
	IntArrayPtr *m;///(2)
	int i ,j ;
	m = new IntArrayPtr[row];
	//申请内存
	for(i = 0 ;i < row ;i++)
		m[i] = new int[col]; ///m现在成为一个row * col 的数组
	cout<<"Enter "<<row <<" rows of "
		<<col<<" integers each:\n";
	
	///赋值
	for(i = 0 ; i < row ; i++)
		for( j = 0; j < col ; j++)
			cin>>m[i][j];
	///打印二维动态数组
	cout<<"Echoing the 2 dimesional array:\n";
	for(i = 0; i < row ;i++)
	{
		for( j = 0; j < col ; j++)
			cout<<m[i][j]<<" ";
		cout<<endl;
	}
	///释放内存
	for( i = 0 ;i < row ; i++)
		delete [] m[i];
	delete [] m;
	return 0;
}


开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明C语言多维动态数组
喜欢 (0)
加载中……