摘要: #include<iostream>#include<ctime>using namespace std; struct list{ int number; list *next;}; int FindLinkList(list *t, int i){ int j = 0; list *p = t; 阅读全文
posted @ 2017-02-23 20:25 郑哲 阅读(105) 评论(0) 推荐(0) 编辑