
数据结构
张懿娈
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Stack_templet
#include<stdio.h> #include<stdlib.h> typedef struct S_NODE { struct S_NODE *down; int value; }S_Node; S_Node* S_Init_HE()//生成头尾节点 { S_Node *phead, *pend; phead = (S_Node*)mal...原创 2018-06-03 12:05:48 · 105 阅读 · 0 评论 -
123
#include<iostream>#include<string.h>#include<stdio.h>#include<iomanip>usingnamespace std;structdate{ intmonth, day;};structmeeting{ datestartdate, enddate; charplace[...原创 2018-06-27 23:03:08 · 113 阅读 · 0 评论