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

modify

上级 24575c99
...@@ -3,33 +3,33 @@ ...@@ -3,33 +3,33 @@
// //
// 在此处包含 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 int ElemType; // 链表中元素的类型 typedef int ElemType; // The type of an element in a linked list
typedef struct Node { typedef struct Node {
ElemType data; // 数据域 ElemType data; // Data fields
struct Node* next; // 指针域 struct Node* next; // pointer field
}LinkList; }LinkList;
// //
// 在此处声明函数 // Declare the function here
// //
int Delete(LinkList* pListHead, int i, ElemType* pElem); int Delete(LinkList* pListHead, int i, ElemType* pElem);
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论