提交 8203a2a1 创建 作者: 宋海霞's avatar 宋海霞

modify

上级 6799325f
...@@ -3,29 +3,29 @@ ...@@ -3,29 +3,29 @@
// //
// 在此处包含 C 标准库头文件 // Include the C standard library header file here
// //
#include <stdio.h> #include <stdio.h>
// //
// 在此处包含其他头文件 // Other header files are included here
// //
// //
// 在此处定义数据结构 // Define the data structure here
// //
typedef struct _SortObject{ typedef struct _SortObject{
int length; // 线性表的实际长度,即线性表中元素的个数。 int length; // The actual length of the linear table, the number of elements in the linear table.
int* Elements; // 使用数组存储线性表中的元素。 int* Elements; // Arrays are used to store elements in linear tables.
}SortObject; }SortObject;
// //
// 在此处声明函数 // Declare the function here
// //
void Sift(SortObject* List, int size, int p); void Sift(SortObject* List, int size, int p);
...@@ -33,7 +33,7 @@ void HeapSort(SortObject* List); ...@@ -33,7 +33,7 @@ void HeapSort(SortObject* List);
// //
// 在此处声明全局变量 // Declare global variables here
// //
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论