【C 语言】结构体 ( 结构体 数组 作为函数参数 | 数组 在 堆内存创建 )
【摘要】
文章目录
一、结构体 数组 作为函数参数 ( 数组 在 堆内存创建 )二、完整代码示例
一、结构体 数组 作为函数参数 ( 数组 在 堆内存创建 )
在上一篇博客 ...
一、结构体 数组 作为函数参数 ( 数组 在 堆内存创建 )
在上一篇博客 【C 语言】结构体 ( 结构体 数组 作为函数参数 | 数组 在 栈内存创建 ) 的基础上 , 将 栈内存 中的 结构体数组 , 更改为 堆内存 中创建结构体数组 ;
在堆内存中 , 创建 结构体数组 : 传入 二级指针 , 该指针 指向 结构体 指针 , 传入 二级指针 的目的是 , 可以在函数中 , 通过形参 间接赋值 , 达到返回创建堆内存的目的 ;
/**
* @brief create_student 堆内存中分配内存
* @param array 二级指针 , 指向结构体数组
* @return
*/
int create_student(Student **array, int count)
{
// 返回值
int ret = 0;
// 临时变量
Student *tmp = NULL;
// 验证二级指针合法性
if(array == NULL)
{
ret = -1;
return ret;
}
// 堆内存中申请内存
tmp = (Student *)malloc(sizeof(Student) * count);
// 通过间接赋值 设置返回值
*array = tmp;
return ret;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
释放堆内存中的 结构体 数组 : 传入的参数是 二级指针 , 通过该 二级指针 指向 结构体一级指针 , 将 结构体指针 置空 ;
/**
* @brief free_student 释放内存
* @param array
* @return
*/
int free_student(Student **array)
{
// 返回值
int ret = 0;
// 验证二级指针合法性
if(array == NULL)
{
ret = -1;
return ret;
}
// 释放内存
free(*array);
// 指针置空 , 防止野指针
*array = NULL;
return ret;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
二、完整代码示例
完整代码示例 :
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/**
* @brief The Student struct
* 定义 结构体 数据类型 , 同时为该结构体类型声明 别名
* 可以直接使用 别名 结构体变量名 声明结构体类型变量
* 不需要在前面添加 struct 关键字
*/
typedef struct Student
{
char name[5];
int age;
int id;
}Student;
/**
* @brief printf_struct_array 打印结构体数组
* @param array 数组作为函数参数退化为指针
* @param count 数组中的元素个数
*/
void printf_struct_array(Student *array, int count)
{
// 循环控制变量
int i = 0;
// 验证数组合法性
if(array == NULL)
{
return;
}
// 打印结构体数组中的 结构体 age 字段
for(i = 0; i < count; i++)
{
printf("Student age = %d\n", array[i].age);
}
}
/**
* @brief sort_struct_array 对结构体数组 按照年龄进行排序
* @param array 结构体指针
* @param count 结构体数组的元素个数
*/
void sort_struct_array(Student *array, int count)
{
// 循环控制变量
int i = 0, j = 0;
// 学生年龄
Student tmp;
// 验证数组合法性
if(array == NULL)
{
return;
}
// 排序
for(i = 0; i < count; i++)
{
for(j = i + 1; j < count; j++)
{
if(array[i].age > array[j].age)
{
tmp = array[i];
array[i] = array[j];
array[j] = tmp;
}
}
}
}
/**
* @brief create_student 堆内存中分配内存
* @param array 二级指针 , 指向结构体数组
* @return
*/
int create_student(Student **array, int count)
{
// 返回值
int ret = 0;
// 临时变量
Student *tmp = NULL;
// 验证二级指针合法性
if(array == NULL)
{
ret = -1;
return ret;
}
// 堆内存中申请内存
tmp = (Student *)malloc(sizeof(Student) * count);
// 通过间接赋值 设置返回值
*array = tmp;
return ret;
}
/**
* @brief free_student 释放内存
* @param array
* @return
*/
int free_student(Student **array)
{
// 返回值
int ret = 0;
// 验证二级指针合法性
if(array == NULL)
{
ret = -1;
return ret;
}
// 释放内存
free(*array);
// 指针置空 , 防止野指针
*array = NULL;
return ret;
}
/**
* @brief 主函数入口
* @return
*/
int main(int argc, char* argv[], char**env)
{
// 声明结构体数组 , 该数组在栈内存中
Student *array = NULL;
// 循环控制变量
int i = 0;
// 堆内存中为结构体指针分配内存
create_student(&array, 3);
// 命令行中 , 接收输入的年龄
for(i = 0; i < 3; i++)
{
printf("\n Input Age :\n");
// 命令换行中 接收 输入的年龄 ,
// 设置到 Student 数组元素的 age 成员中
scanf("%d", &(array[i].age));
}
// 结构体数组 按照 age 排序
sort_struct_array(array, 3);
// 打印结构体数组中的 结构体 age 字段
printf_struct_array(array, 3);
// 释放堆内存数据
free_student(&array);
// 命令行不要退出
system("pause");
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
执行结果 :
Input Age :
12
Input Age :
11
Input Age :
14
Student age = 11
Student age = 12
Student age = 14
请按任意键继续. . .
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
文章来源: hanshuliang.blog.csdn.net,作者:韩曙亮,版权归原作者所有,如需转载,请联系作者。
原文链接:hanshuliang.blog.csdn.net/article/details/121666497
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)