2016年8月22日
摘要: #include struct node{ int payload; node* next; node(int payload){this->payload=payload;next=nullptr;} }; void bianli(node* head){ node* iterator = head; while(iterator){ std::co... 阅读全文
posted @ 2016-08-22 12:05 新猪先生 阅读(1531) 评论(0) 推荐(0) 编辑