【小练习】顺序表的就地逆置

文章目录 1.练习代码 2关键点分析 2.1题目要求 2.2题目分析 2.3代码走读 2.4运行结果 1.练习代码 #include "stdafx.h" #include <stdio.h> #include <iostream> typedef struct { int * base; int length; }sqlist; void reverseSQ(sqlist *list) { in
相关文章
相关标签/搜索