摘要: #include #include #include #include using namespace std; struct sqlist{ int *elem; int length; }; void creat(sqlist &a){ a.elem=(int *)malloc(sizeof(int)); int n,tmp; scanf("%d",&n); for ... 阅读全文
posted @ 2018-12-28 12:23 bluefly-hrbust 阅读(115) 评论(0) 推荐(0)