摘要: #include<stdlib.h>#include<iostream>using namespace std;typedef struct IntChain{ int value;//存储具体值 struct IntChain *next;//用于寻找下一元素 }IntChain,*PIntCha 阅读全文
posted @ 2020-04-10 22:07 iiiiiki 阅读(386) 评论(0) 推荐(0)