数据结构课程设报告——电子计记事本 为了实现以上功能,函数结构如下所示。 (1) 数据结构 struct date /* 日期结构 */ { int year; /* 年 */ int month; /* 月 */ int day; /* 日 */ }; struct event /* 事件信息结构 */ { char describe[20]; /* 事件简要说明 */ struct date eventdate; /* 事件处理