二级指针三种内存模型综合训练

/***
point_practice.c
***/
#include<stdio.h>
#include<string.h>
#include<stdlib.h> 

int sort( char **myp1 /*in*/, int num1, char (*myp2)[30], int num2, char ***myp3, int *num3)
{
    int i = 0, j = 0, k = 0;
    int tmplen;
    char **p3 = NULL;
    char *tmpP = NULL;
    p3 = (char **)malloc((num1 + num2) * sizeof(char *));
    if (NULL == p3)
    {
        return -1;
    }

    for (i = 0; i < num1; i++)
    {
        tmplen = strlen(myp1[i]) + 1;
        p3[i] = (char *)malloc(tmplen * sizeof(char));

        if(NULL == p3[i])
        {
            return -2;
        }
        strcpy(p3[i],myp1[i]);
    }

    for (j = 0; j < num2; j++,i++)
    {
        tmplen = strlen(myp2[j]) + 1;
        p3[i] = (char *)malloc(tmplen * sizeof(char));

        if (NULL == p3[i])
        {
            return -3;
        }
        strcpy(p3[i], myp2[j]);
    }

    tmplen = num1 + num2;

    for (i = 0; i < tmplen; i++)
    {
        for (j = i + 1; j < tmplen; j++)
        {
            if (strcmp(p3[i], p3[j]) > 0)
            {
                tmpP = p3[i];
                p3[i] = p3[j];
                p3[j] = tmpP;
            }
        }
    }
    *num3 = tmplen;
    *myp3 = p3;
    return 0;
}

void sortFree(char **p, int len)
{
    int i;
    if (NULL == p)
    {
        return ;
    }

    for (i = 0;  i < len; i++)
    {
        free(p[i]);
    }
    free(p);
}

/*
把二级指针指向二维内存释放掉
同时间接修改实参的地址
*/
void sortFree01(char ***myp, int len)
{
    int i = 0;
    char **p = NULL;
    if (myp == NULL)
    {
        return ;
    }

    p = *myp;
    if (p == NULL)
    {
        return;
    }

    for (i = 0; i < len; i++)
    {
        free(p[i]);
    }
    free(p);
    *myp = NULL; //间接赋值是指针最大的意义 

}

int main()
{
    int ret;
    int i;

    char *p1[] = {"aaaaaa","cccccc","bbbbbb"};
    char buf2[10][30] = {"11111","3333333","222222"};
    char **p3 = NULL;
    int len1,len2,len3;

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

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

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

    return 0;
}

原文地址:https://www.cnblogs.com/wanghao-boke/p/11827795.html

时间: 2024-10-26 05:43:25

二级指针三种内存模型综合训练的相关文章

C++二级指针第二种内存模型(二维数组)

C++二级指针第二种内存模型(二维数组) 二维数组 二维数组本质上是以数组作为数组元素的数组,即“数组的数组”. 定义 类型说明符 数组名[常量表达式][常量表达式] 例如: float a[3][4],b[5][10]; 二维数组元素地址 #include <iostream> using namespace std; int main() { cout << "Hello world!" << endl; int a[3][4]={ {1,2,3

二级指针的三种内存模型

第一种内存模型: /* Module: 二级指针第一种内存模型.cpp Notices: Copyright (c) 2017 Landy Tan */ #include <iostream> using namespace std; ///////////////////////////////////////////////// #define SIZE(a) sizeof(a) / sizeof(a[0]) int SortArray(char **pArray, int nLen);

C++二级指针第三种内存模型

#include "stdio.h" #include "stdlib.h" #include "string.h" void main() { int i = 0, j = 0; char buf[100]; char **myarray = (char **)malloc(10*sizeof(char*)); //int array[10] if (myarray == NULL) { return; } for (i=0; i<10;

实现按行读取文件,把内容按照第三种内存模型打包数据传出,把行数通过函数参数传出。

/* 2 编写一个业务函数,实现按行读取文件.把内容按照第三种内存模型打包数据传出,把行数通过函数参数传出. 函数原型有两个,任意选择其一 要求1:请自己任意选择一个接口(函数),并实现功能:70分 要求2:编写测试用例.30分 要求3:自己编写内存释放函数 */ /********************************************************************** * 版权所有 (C)2015, Wu Yingqiang. * * 文件名称:ReadFi

二级指针做输入的第三种内存模型:手工打造二维内存

声明局部变量p, p指向一段内存地址,这段内存地址存放这N个指针,每个指针都指向malloc的另一段内存. 内存模型图如下: p应该是二级指针 #define _CRT_SECURE_NO_WARNINGS#include<stdlib.h>#include<stdio.h>#include<string.h>#include<ctype.h> char**getMem(int num){ int i = 0, j = 0; char** p2 = NULL

二级指针的三钟内存模型

/* Level tow point have three cache model */ #include <stdio.h> #include <stdlib.h> int Print(char**pArr); int Print02(char**pArr,int num); int GetMem(char***thirdModel,int len); int Destory(char***thirdModel,int len); int main() { int i=0; ch

c 二级指针3种内存分配

//#include "stdafx.h" #include <stdio.h> #include <stdlib.h> #include <string> /* *实现二级指针 *author:whish */ ///1.直接分配在栈上 通过char[][]方式 int mainStack() { char array[3][5] ={{'q','w','e','r','b'},{'a','s','d','f','n'},{'z','x','c',

C提高_day03_二级指针做输入第2种内存模型

#include <stdlib.h> #include <string.h> #include <stdio.h> //打印 排序 //封装成函数 void main() { int i = 0, j = 0; int num = 4; char tmpBuf[30]; char myArray[10][30] = {"aaaaaa", "ccccc", "bbbbbbb", "1111111111

二级指针的3种内存模型

二级指针的内存模型 二级指针的第一种内存模型 Char*Accary [ ] ={ "aaaaaa", "bbbbbb", "ccccccc" }; //接口形参使用方式 Intprintfarr(char **ArrayStr,int iNUm) { For(i =0; i<iNUm; i++) { Printf("%s \n", ArrayStr[i]); } } //调用方式 Printfarr(Accary, 3