摘要:
// // main.c // Test_C // // Created by steve xiaohu zhao on 2025/1/20. // #include <stdio.h> // C 语言指针传递参数(引用传递) void swap(int *px, int *py) { int t 阅读全文
posted @ 2025-01-20 15:28 steve.z 阅读(63) 评论(0) 推荐(0)
|
摘要:
// // main.c // Test_C // // Created by steve xiaohu zhao on 2025/1/20. // #include <stdio.h> // C 语言指针传递参数(引用传递) void swap(int *px, int *py) { int t 阅读全文
posted @ 2025-01-20 15:28 steve.z 阅读(63) 评论(0) 推荐(0)
摘要:
// // Created by steve xiaohu zhao on 2025/1/20. // /** * * 线性表的顺序存储结构实现 * 特点:逻辑上相邻的元素,物理上也相邻 * */ #include <stdio.h> #include <stdlib.h> #define MAXS 阅读全文
posted @ 2025-01-20 14:58 steve.z 阅读(65) 评论(0) 推荐(0) |
||