Re: [问题] 函式怎么回传二维或三维阵列

楼主: q82419 (q82419)   2014-04-26 22:04:17
※ 引述《pudding86200 (猫头鹰咕咕)》之铭言:
: 如题
: 算法想要用函式来取得多维矩阵的初始解
: 可是我发现会卡在一个BUG 爬文也看不懂
: 开一个矩阵ini[2][2]
: 以下是我的程式码
: 我只希望在main里面可以呼叫test()然后把矩阵里面的值给存取出来
: #include "stdafx.h"
: #include "stdlib.h"
: #include "iostream"
: using namespace std;
: void test(int* ini)
: {
: ini[0][0]=1;
: ini[0][1]=2;
: ini[1][0]=1;
: ini[1][1]=2;
: }
: int _tmain(int argc, _TCHAR* argv[])
: {
: int ini[2][2]={0};
: test (&ini[0][0]);
: cout<<ini[0][0]<<endl<<ini[0][1];
: system("pause");
: return 0;
: }
: 可是执行出现了一句话
: "注标必须使用在阵列或指标型别上"
: 想请问一下各位高手们我这段程式是哪边错了
二维以上的阵列我是习惯包成struct去传
我习惯co C,vector或class有请版上其他神人XD
#include <stdio.h>
#include <stdlib.h>
typedef struct ini{
int array[2][2];
} ini;
void test(ini *src){
src->array[0][0] = 1;
src->array[0][1] = 2;
src->array[1][0] = 1;
src->array[1][1] = 2;
}
int main(int argc, char *argv[]){
ini ini1;
test(&ini1);
printf("%d\n%d\n", ini1.array[0][0], ini1.array[0][1]);
return 0;
}
作者: pudding86200 (猫头鹰咕咕)   2014-04-27 00:46:00
感谢~~ 跟struct很不熟> <
楼主: q82419 (q82419)   2014-04-27 01:32:00
struct算满基本的东西 要做linked list等等都会用到有时候一堆资料要绑在一起 做struct阵列就很方便很多library都有自定义的struct让你用 建议熟练

Links booklink

Contact Us: admin [ a t ] ucptt.com