链表
阿龙的圈子
仰望星空 脚踏实地
向前走 永不停
展开
-
简单的链表建立与输出
#include #include #include #include #include using namespace std; struct student_type { int num; float score; struct student_type *next; }; typedef struct student_type Student; St原创 2014-11-25 11:32:59 · 5355 阅读 · 0 评论 -
uva11988
此处采用的是链表的思想,具体实现过程任然需要注意,知识是死的,而自己的思想是活的,加油,自己#include #include #include using namespace std; #define maxn 100005 int cur, last, next[maxn]; char s[maxn]; int main() { while(~scanf("%s",s+1))原创 2014-12-18 22:08:38 · 906 阅读 · 0 评论 -
UVA 12657
双向链表 ///双向链表---节点 ///如果数据结构上的某一个操作很耗时,有时可以用加标记的方式处理,而不需要真的去执行那个操作, ///但同时,该数据结构的所有其他操作都要考虑这个操作 #include #include #include #include #include #include using namespace std; #define maxn 100005 int原创 2014-12-19 17:03:29 · 2201 阅读 · 0 评论