摘要: 1 #include 2 using namespace std; 3 4 typedef void Seqlist; 5 typedef void SeqlistNode; 6 7 typedef struct 8 { 9 int length; 10 int capacity; 11 unsigned int *node;... 阅读全文
posted @ 2016-08-22 22:13 蜗牛在奔跑 阅读(559) 评论(0) 推荐(0) 编辑