C语言之对于将二维数组作为参数传递的思考

这两天在学习扫地僧的课程(二级指针三种内存模型)时,最后的作业是把“第一种内存模型和第二种内存模型的内容复制到第三种内存模型中,并进行排序”。老师预定义了前两种内存模型的内容,和对应的函数实现接口,如下:

    char *p1[] = { "aaaaa", "cccccc", "bbbbb" };
    char buf2[10][30] = { "111111", "3333333", "2222222" };

函数接口:

int sort(char ** myp1/*in*/, int num1/*in*/, char(*myp2)[30]/*in*/, int num2/*in*/, char ***myp3/*out*/, int *pNum3/*out*/);

既然老师希望在sort()函数解决问题,我的思路是:

  1. 先获得传入的两个字符串数组中,最长的字符串长度;
  2. 取两个输入的字符串数组的成员数量之和,并且获得最长的那个字符串的长度之后,根据这两个参数再堆上申请空间;
  3. 分别复制两个字符串数组到新的堆空间上;
  4. 针对堆空间的字符串数组进行排序,最后输出排好序的字符串。
  5. 释放申请的堆空间。

思路还比较清晰,然后就自己实现代码了。首先我自己定义的函数接口为:

// 获取最长的字符串长度
int getRowLen(char **myp1/*in*/, int num1/*int*/, int *pLen)
// 申请堆空间
int getArray3(char ***p, int RowNum, int RowLen)
// 复制字符串数组
int copyArray(char **myp1/*in*/, int num1/*in*/, char **myp3/*in*/, int *pMyp3Row/*in, out*/)
// 释放堆空间
int getArray3_Free(char ***p3, int p3num)
// 最后是题目给定的函数接口,主要功能在该函数中实现
int sort(char ** myp1/*in*/, int num1/*in*/, char(*myp2)[30]/*in*/, int num2/*in*/, char ***myp3/*out*/, int *pNum3/*out*/)

测试案例如下:

int main()
{
    int nRet = 0;
    char *p1[] = { "aaaaa", "cccccc", "bbbbb" };
    char buf2[10][30] = { "111111", "3333333", "2222222" };
    char **p3 = NULL;
    int len1, len2, len3, i = 0;

    len1 = sizeof(p1) / sizeof(*p1);
    len2 = 3;

    nRet = sort(p1, len1, buf2, len2, &p3, &len3);
    if (nRet != 0) {
        printf("func sort() err: %d \n", nRet);
        return nRet;
    }

    printf("after sorting...\n");
    for (; i < len3; i++) {
        printf("%s \n", p3[i]);
    }

    getArray3_Free(&p3, len3);
    system("pause");
}

在编译的时候就遇到了困惑,编译器报错:
Error C2664 'int copyArray(char **,int,char **,int )': cannot convert argument 1 from 'char ()[30]' to 'char **'
我在追溯问题的时候一直以为是指针传输的问题,但是想不到更具体的可疑点。最后在做实验的时候发现,有两个函数接口有同样的问题,getRowLen() 和 copyArray()都是把试图原数组的地址传进来,可是,每次传入的数组是buf2[10]
[30]的时候就会报错,原因在于:

设计的函数参数列表中没有指定确定的维度信息,在传输buf2[10][30]的时候,因为sort()指定了维度信息char(myp2)[30],所以编译器知道myp2的第二维是30个char类型的长度,至于myp2中有多少个字符串,在传入myp2的时候编译器必然是已经计算出myp2中包含的字符串的个数了。但是,如果我们不指定清楚第二维的大小,那么编译器在分配空间时走到这里就会遇到一个“摩棱两个”的问题:第二维是多大不知道,那么不论分配多少空间都是有可能“踩地址”的!*所以编译器不得不在这里报错了。

知道了原因后,我不得不重新设计了函数接口如下,明显是比较笨拙的:

// 获取最长的字符串长度
int getRowLen(char **myp1/*in*/, int num1/*int*/, int *pLen)
// 获取最长的字符串长度:用于buf2
int getRowLen_1(char (*myp1)[30]/*in*/, int num1/*int*/, int *pLen)

// 申请堆空间
int getArray3(char ***p, int RowNum, int RowLen)

// 复制字符串数组
int copyArray(char **myp1/*in*/, int num1/*in*/, char **myp3/*in*/, int *pMyp3Row/*in, out*/)
// 复制字符串数组:用于buf2
int copyArray_1(char (*myp1)[30]/*in*/, int num1/*in*/, char **myp3/*in*/, int *pMyp3Row/*in, out*/)

// 释放堆空间
int getArray3_Free(char ***p3, int p3num)

// 最后是题目给定的函数接口,主要功能在该函数中实现
int sort(char ** myp1/*in*/, int num1/*in*/, char(*myp2)[30]/*in*/, int num2/*in*/, char ***myp3/*out*/, int *pNum3/*out*/)

这样一来,就相当于针对二级指针的第一种内存模型和第二种内存模型分别设计了函数接口,虽然功能实现了,可是毕竟有“重复造轮子”之嫌。

不过,通过绕一个弯我也深刻体会到了指针在C语言中带来的便利之处。假如在测试案例中,都这样定义字符串数组:

buf0[3][30]  = { "aaaaa", "cccccc", "bbbbb" };
buf1[3][20] = { "111111", "3333333", "2222222" };
buf2[3][10] = { "hello", "world", "C Program Language" };

这样在设计函数接口的时候,就必须为所有的二维长度设计好函数,这样明显很笨拙。但是如果是使用指针来定义字符串数组时,不同的字符串数组就可以使用一套函数接口来工作了。这样才符合代码简洁之道!
YES POINTER!


以下是所有源代码

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int getArray3_Free(char ***p3, int p3num)
{
    int nRet = 0;
    int i = 0;
    char **pTmp = NULL;

    if (p3 == NULL) {
        nRet = -1;
        printf("func getArray3_Free:: detects that (p3 == NULL), error code: %d \n", nRet);
        goto END;
    }

    pTmp = *p3;
    if (pTmp == NULL) {
        nRet = -2;
        printf("func getArray3_Free:: detects that (pTmp == NULL), error code: %d \n", nRet);
        goto END;
    }

    for (; i < p3num; i++) {
        if (pTmp[i] != NULL) {
            free(pTmp[i]);
            pTmp[i] = NULL;
        }
    }

    free(pTmp);
    *p3 = NULL;
    goto END;

END:
    return nRet;
}
int getArray3(char ***p, int RowNum, int RowLen)
{
    int nRet = 0;
    int i = 0;
    char **pTmp = NULL;
    //int nLen = 60;

    if (p == NULL) {
        nRet = -1;
        printf("func getArray3:: detects that (p == NULL), error code: %d \n", nRet);
        goto END;
    }

    pTmp = (char **)malloc(sizeof(char *) * RowNum);
        if (pTmp == NULL) {
            nRet = -2;
            printf("func getArray3:: detects that (pTmp == NULL), error code: %d \n", nRet);
            goto END;
        }

    for (; i < RowNum; i++) {
        pTmp[i] = (char *)malloc(sizeof(char)  * RowLen);
    }
    *p = pTmp;
    goto END;

END:
    return nRet;
}
int getRowLen(char **myp1/*in*/, int num1/*in*/, int *pLen)
{
    int nRet = 0;
    int nLen = 0, nLenRow, i = 0;

    if (myp1 == NULL) {
        nRet = -1;
        printf("func getRowLen:: detectst that (myp1 == NULL), error code: %d \n", nRet);
        goto END;
    }

    for (; i < num1; i++) {
        nLenRow = strlen(myp1[i]) + 1;
        nLen = (nLenRow > nLen) ? nLenRow : nLen;
    }

    *pLen = nLen;
    goto END;

END:
    return nRet;
}
int getRowLen_1(char (*myp1)[30]/*in*/, int num1/*int*/, int *pLen)
{
    int nRet = 0;
    int nLen = 0, nLenRow, i = 0;

    if (myp1 == NULL) {
        nRet = -1;
        printf("func getRowLen:: detectst that (myp1 == NULL), error code: %d \n", nRet);
        goto END;
    }

    for (; i < num1; i++) {
        nLenRow = strlen(myp1[i]) + 1;
        nLen = (nLenRow > nLen) ? nLenRow : nLen;
    }

    *pLen = nLen;
    goto END;

END:
    return nRet;
}
int copyArray(char **myp1/*in*/, int num1/*in*/, char **myp3/*in*/, int *pMyp3Row/*in, out*/)
{
    int nRet = 0;
    int i = 0, myp3Row;
    char **pTmp = NULL;

    if (myp1 == NULL || myp3 == NULL || myp3 == NULL || pMyp3Row == NULL) {
        nRet = -1;
        printf("func sort:: detects that (myp1== NULL || myp3 == NULL || pNum3 == NULL || pMyp3Row == NULL), error code: %d \n", nRet);
        goto END;
    }

    pTmp = myp3;
    if (pTmp == NULL) {
        nRet = -2;
        printf("func sort:: pTmp == NULL), error code: %d \n", nRet);
        goto END;
    }

    myp3Row = *pMyp3Row;
    for (; i < num1; i++) {
        strncpy(pTmp[myp3Row], myp1[i], strlen(myp1[i]));
        pTmp[myp3Row][strlen(myp1[i])] = '\0';
        printf("pTmp[%d]: %s \n", myp3Row, pTmp[myp3Row]);
        myp3Row += 1;
    }

    *pMyp3Row = myp3Row;

END:
    return nRet;
}
int copyArray_1(char (*myp1)[30]/*in*/, int num1/*in*/, char **myp3/*in*/, int *pMyp3Row/*in, out*/)
{
    int nRet = 0;
    int i = 0, myp3Row;
    char **pTmp = NULL;

    if (myp1 == NULL || myp3 == NULL || myp3 == NULL || pMyp3Row == NULL) {
        nRet = -1;
        printf("func sort:: detects that (myp1== NULL || myp3 == NULL || pNum3 == NULL || pMyp3Row == NULL), error code: %d \n", nRet);
        goto END;
    }

    pTmp = myp3;
    if (pTmp == NULL) {
        nRet = -2;
        printf("func sort:: pTmp == NULL), error code: %d \n", nRet);
        goto END;
    }

    myp3Row = *pMyp3Row;
    for (; i < num1; i++) {
        strncpy(pTmp[myp3Row], myp1[i], strlen(myp1[i]));
        pTmp[myp3Row][strlen(myp1[i])] = '\0';
        myp3Row += 1;
    }

    *pMyp3Row = myp3Row;

END:
    return nRet;
}
int sort(char ** myp1/*in*/, int num1/*in*/, char(*myp2)[30]/*in*/, int num2/*in*/, char ***myp3/*out*/, int *pNum3/*out*/)
{
    int nRet = 0;
    int nLenRowMax1 = 0, nLenRowMax2 = 0, nLenRow = 0;
    int nRowIdx = 0;
    int i, j;
    char ** pTmp = NULL;
    char *pTmpCg = NULL;

    if (myp1 == NULL || myp2 == NULL || pNum3 == NULL) {
        nRet = -1;
        printf("func sort:: detects that (myp1== NULL || myp2 == NULL || pNum3 == NULL), error code: %d \n", nRet);
        goto END;
    }

    *pNum3 = num1 + num2;     // to get the size of string group 3
#if (0)
    *myp3 = (char**)malloc(sizeof(char *) * sizeof(*pNum3));    // to ask address for myp3
    if (myp3 == NULL) {
        nRet = -2;
        printf("func sort:: detects that (myp3 == NULL), error code: %d \n", nRet);
        goto END;
    }
#endif
    nRet = getRowLen(myp1, num1, &nLenRowMax1);

    if (nRet != 0) {
        nRet = -3;
        printf("func sort:: detects that (nRet != 0), error code: %d \n", nRet);
        goto END;
    }
    printf("nLenRowMax1: %d \n", nLenRowMax1);

    nRet = getRowLen_1(myp2, num2, &nLenRowMax2);
    if (nRet != 0) {
        nRet = -4;
        printf("func sort:: detects that (nRet != 0), error code: %d \n", nRet);
        goto END;
    }
    nLenRow = (nLenRowMax1 > nLenRowMax2) ? nLenRowMax1 : nLenRowMax2;  // to get the row size of new array
    nRet = getArray3(myp3, *pNum3, nLenRow);    // to put space for myp3
    if (nRet != 0) {
        nRet = -4;
        printf("func sort:: detects that (nRet != 0), error code: %d \n", nRet);
        goto END;
    }

    nRet = copyArray(myp1, num1, *myp3, &nRowIdx);
    if (nRet != 0) {
        nRet = -5;
        printf("func sort:: detects that (nRet != 0), error code: %d \n", nRet);
        goto END;
    }

    nRet = copyArray_1(myp2, num2, *myp3, &nRowIdx);
    //nRet = copyArray(myp2, num2, *myp3, &nRowIdx);
    if (nRet != 0) {
        nRet = -5;
        printf("func sort:: detects that (nRet != 0), error code: %d \n", nRet);
        goto END;
    }

    printf("before sorting: \n");
    for (i=0; i < *pNum3; i++) {
        printf("%s \n", (*myp3)[i]);
    }

    if (nRowIdx != *pNum3) {
        *pNum3 = nRowIdx - 1;
        printf("111111111111111111");
    }
    //*******sort********
    pTmp = *myp3;
    for (i = 0; i < *pNum3; i++) {
        for (j = i + 1; j < *pNum3; j++) {
            if (strcmp(pTmp[i], pTmp[j]) > 0) {
                pTmpCg = pTmp[i];
                pTmp[i] = pTmp[j];
                pTmp[j] = pTmpCg;
            }
        }
    }
    goto END;

END:
    return nRet;
}
int main()
{
    int nRet = 0;
    char *p1[] = { "aaaaa", "cccccc", "bbbbb" };
    char buf2[10][30] = { "111111", "3333333", "2222222" };
    char **p3 = NULL;
    int len1, len2, len3, i = 0;

    len1 = sizeof(p1) / sizeof(*p1);
    len2 = 3;

    nRet = sort(p1, len1, buf2, len2, &p3, &len3);
    if (nRet != 0) {
        printf("func sort() err: %d \n", nRet);
        return nRet;
    }

    printf("after sorting...\n");
    for (; i < len3; i++) {
        printf("%s \n", p3[i]);
    }

    getArray3_Free(&p3, len3);

    printf("hello world....\n");
    system("pause");
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,874评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,102评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,676评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,911评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,937评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,935评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,860评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,660评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,113评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,363评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,506评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,238评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,861评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,486评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,674评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,513评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,426评论 2 352

推荐阅读更多精彩内容

  • 指针是C语言中广泛使用的一种数据类型。 运用指针编程是C语言最主要的风格之一。利用指针变量可以表示各种数据结构; ...
    朱森阅读 3,440评论 3 44
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32
  • __block和__weak修饰符的区别其实是挺明显的:1.__block不管是ARC还是MRC模式下都可以使用,...
    LZM轮回阅读 3,304评论 0 6
  • 1.写一个NSString类的实现 +(id)initWithCString:(c*****t char *)nu...
    韩七夏阅读 3,763评论 2 37
  • 七、数组 在C语言中,数组属于构造数据类型。数组根据元素的类型不同,数组又可以分为 数值数组 、字符数组 、指针数...
    坚持到底v2阅读 819评论 0 2