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

modify

上级 86057564
......@@ -3,34 +3,34 @@
//
// 在此处包含 C 标准库头文件
// Include the C standard library header file here
//
#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 DuLNode {
ElemType data; // 数据域
struct DuLNode* prior; // 前趋指针
struct DuLNode* next; // 后继指针
ElemType data; // Data fields
struct DuLNode* prior; // Precursor pointer
struct DuLNode* next; // Subsequent pointer
}DuLinkList;
//
// 在此处声明函数
// Declare the function here
//
int Delete(DuLinkList* pListHead, int i, ElemType* pElem);
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论