摘要: #include #include using namespace std; typedef struct ListNode{ int data; ListNode* pre; ListNode* nxt; }List; int length; List* CreateList(int len) { List* ret=(List*)malloc(sizeof(List)); Lis... 阅读全文
posted @ 2017-12-09 21:10 baka 阅读(193) 评论(0) 推荐(0) 编辑