摘要: #include <iostream>using namespace std;typedef struct _List_my{ int index; struct _List_my *next; _List_my(int i):index(i), next(NULL){} _List_my():ne 阅读全文
posted @ 2009-03-07 19:00 小 楼 一 夜 听 春 雨 阅读(390) 评论(0) 推荐(0)